I wanted to find scripts that use jquery.js without plugins. I notice that there are tons of jquery.js plugins that require you to put each plugin in the header. I also notice that there are a few jquery scripts that all is required in the header is jquery.js and you use document.ready on the page you want to use jquery. Ok, not sure how else to word my request. I tried to search in google but not sure what keywords to use in my search. Can someone point me in the right direction where you can find jquery.js scripts that don't require plugins. thanks
well jquery is the mother framework and plugins are made based on the jquery and most of them are contributed from the community. imagine you are building a site and that has all plugins are bundled in 1 jquery file and let say 99% of bundled plugins are not required what is the point of having that. so plugins will help you to use only when needed.
hmm, jquery is framework, you can code by yourself or using plugin. you can start write your own jquery code <script type="text/javascript"> $(document).ready(function(){ // your code here }); // or $(function(){ // your code here }); </script> HTML:
Ah, I think you mean snippets. Check these out! http://snipplr.com/all/language/jquery http://snippets.dzone.com/tag/jquery http://css-tricks.com/snippets/jquery/ You'll find heaps more if you search for "jQuery snippets".