I ran the below code
$(document).ready(function() {
var ivar = 0;
$(window).resize(function() {
console.log('$(window).height() ' + $(window).height() + ' - ' + ++ivar);
});
});
whenever i resize i found the event was firing twice i.e. the counter 'ivar' is incremented twice.
Can any one advise me whats happening in the resize event that makes the counter to get incremeted twice
**Edit: 1. I'm resizing the window by double-clicking on the window bar.
Thanks