I've got the below function for the window resize. My question is how do I make it work on window resize as well as page orientation is changed?
$(window).resize(function() {
if(this.ab) clearTimeout(this.ab);
this.ab = setTimeout(function() {
$(this).trigger('winresized');
},1000);
});
$(window).on('winresized', function() {
});