This is a basic tutorial, written to help you get started using jQuery.
This tutorial shows you how you can do some special effect using jquery.
Download a copy of jquery from here.
Just start by creating a new HTML page with the following contents:
<html>
<head>
<title> Jquery Programming Tutorial by Anurag</title>
</head>
<body>
<a href="http://anurag-tutorial.blogspot.com/"> Programming Tutorial by Anurag</a>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a").click(function(event){
event.preventDefault();
$(this).hide("slow");
});
});
</script>
</body>
</html>
This tutorial shows you how you can do some special effect using jquery.
Download a copy of jquery from here.
Just start by creating a new HTML page with the following contents:
<html>
<head>
<title> Jquery Programming Tutorial by Anurag</title>
</head>
<body>
<a href="http://anurag-tutorial.blogspot.com/"> Programming Tutorial by Anurag</a>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a").click(function(event){
event.preventDefault();
$(this).hide("slow");
});
});
</script>
</body>
</html>
You can test it, just click on hyper link in this HTML page and it will disappear with animation.
No comments:
Post a Comment