You can use Jquery that is basic JavaScript development framework. I will give you a designed to help you get started using jQuery. If you don't have a test page setup yet, start by making a new HTML page with the following contents:
Code:
<!doctype html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>
You need to Edit the src attribute in the script tag to point to your copy of jquery.js. For instance, if jquery.js is in the same directory as your HTML file, you can use:
Code:
<script type="text/javascript" src="jquery.js"></script>
You need to download your own copy of jQuery from the Downloading page jQuery website.
Bookmarks