Working with jQuery
- Use <script> tag with src property set to jquery file
- Use jQuery functions in your JavaScript
- Use .ready() function to run JavaScript when the web page is fully loaded
- Use various other jQuery functions to manipulate HTML and CSS
jQuery or $
When you refer to jQuery in your JavaScript code, you can use either the word “jQuery” (case sensitive), or you can use $ (dollar sign) as an alias.
See Also
- Tutorials:How jQuery Works @ jquery.com