if (window.matchMedia("(min-width: 400px)").matches) {
/* the viewport is at least 400 pixels wide */
$("#myElement").remove();
} else {
/* the viewport is less than 400 pixels wide */
}
// If supplied, triggered when a media query matches.
match : function() {
$("#myElement").remove();
},