Possible Duplicate:
javascript resize event firing multiple times while dragging the resize handle
Tried :
$(window).bind('load resize', function (e) {
console.log("resized");
});
but it wrote "resized" for every small movement of the window. Can I call a function (In this example, that console.log()) only when I finish (I stop) to resize the window?
Thank you!