jquery only

Discussion in 'jQuery' started by steveeyes, Apr 14, 2011.

  1. #1
    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
     
    steveeyes, Apr 14, 2011 IP
  2. codeartist

    codeartist Peon

    Messages:
    96
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    codeartist, Apr 15, 2011 IP
  3. zerophean

    zerophean Peon

    Messages:
    91
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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:
     
    zerophean, Apr 18, 2011 IP
  4. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Cash Nebula, Apr 19, 2011 IP