Thread: Jquery help.
View Single Post
Old 06-19-2009, 08:55 PM   PM User | #3
scrappy
New Coder

 
Join Date: Nov 2008
Posts: 59
Thanks: 5
Thanked 4 Times in 4 Posts
scrappy is an unknown quantity at this point
Quote:
Originally Posted by Kev0121 View Post
I'm looking to implement this plugin but don't have a clue how to go about it hopefully i can get some help of this forum
To use jquery on a webpage is a simple matter of:

Code:
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
and then just use it:

Code:
<script>
$(document).ready(function() {
  // your code here
});
</script>
It's that easy.
scrappy is offline   Reply With Quote