Reputation: 1567
where can i find a list of available standard functions for jQuery(window).
I know about load and focus.
Upvotes: 3
Views: 791
Reputation: 220136
Just open your console, type:
console.log(jQuery(window));
Hit Enter (Ctrl-Enter in Firebug), and you'll see it all there!
Upvotes: 3