[jQuery] Starter
[jQuery] Starter
Respected Seniors
i just came across jQuery on my way searching for something else n
decided to learn coding with jQuery.
Here is my very first piece of code with jQuery but I cant get it to
work:
<html>
<head>
<title>tut1</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$("a").click(function(){
$(this).hide("slow");
return false;
});
</script>
</head>
<body>
Click <a href="http://www.yahoo.com">here</a>
</body>
</html>
the jquery.js file is in same folder as this html file. there is no
other file in the folder. I m using IE7.
Please Help. waiting to get started.
Regards
iPhenom