Quote:
Originally Posted by Kev0121
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.