![wordpress](https://habrastorage.org/r/w120/webt/5a/e6/87/5ae687d046207979435072.png)
WordPress
4
Вклад в тег
$(document).ready(function() {
if ($(document).width() > 640) {
console.log('1');
}
$(window).resize(function() {
if ($(document).width() > 640) {
console.log('2');
}
})
});