itemsDesktop : [1199,4],
itemsDesktopSmall : [980,3],
itemsTablet: [768,2],
itemsTabletSmall: false,
itemsMobile : [479,1],
<input id="foo" type="text" />
$(function () {
$('#foo').on('change', function () {
console.log('change');
});
});
$(function () {
$('#foo').on('keydown', function () {
console.log('change');
});
});