The title pretty much says it all.
I'm trying to use jQuery's ability (hoping GWTQuery has implemented it) to pass a callback function to the window.resize something like this(example from jquery site):
$(window).resize(function(){
but when I tryi to type
alert("Stop it!");
}); $(window)
in Eclipse I get an error that window
can not be resolved.
If anyone's interested in the bigger picture I'm basically trying to get an indciation from the window that is has finished the resizing operation and thus available for further resizing.
Thanks for any help Ittai P.S. please no lectures about browser development and resizing as I'm developing an in house app which just happens to use a browser.