Window.OnResize event
Event executed upon/while resizing the window.
This event is executed while you are dragging the window resize grip, so you might avoid running heavy functions in it.
Example:
var newWindow = new nJDSK.Window(...); newWindow.onResize=function(win){ win.setFooter($(win.base).width()+':'+$(win.base).height()); };