how to organize all JQuery scripts
Posted
by Abu Hamzah
on Stack Overflow
See other posts from Stack Overflow
or by Abu Hamzah
Published on 2010-05-14T19:36:22Z
Indexed on
2010/05/14
19:44 UTC
Read the original article
Hit count: 206
jQuery
i am using half dozen jquery plugins and plus my own jquery scripts and in every script i have this code:
$(document).ready(function()
{ .... }
what is the best way of organizing all the scripts in one centeralized location and instead of having multiple times $(document).ready(function() everywhere in the script.
thoughts?
© Stack Overflow or respective owner