jQuery resize not working at FireFox, Chrome and Safari
- by naveen
$("#dvMyDIV").bind("resize", function(){
alert("Resized");
});
or
$("#dvMyDIV").resize(function(){
alert("Resized");
});
The questions
Why is this not working at FireFox, Chrome and Safari?
Can this be considered a jQuery bug since the resize is not handled for other browsers?
Could the only workaround be calling a SetTimeout function checking the clientHeight and clientWidth?
Any workarounds using jQuery?