Alex J
Alex J

Reputation: 1567

list of available functions for jQuery(window)

where can i find a list of available standard functions for jQuery(window). I know about load and focus.

Upvotes: 3

Views: 791

Answers (1)

Joseph Silber
Joseph Silber

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

Related Questions