$(document).ready(function(){
$(".demo").click(function(){
$(this).hide(200);
});
});
$(document).ready(function(){
// jQuery methods go here...
});
Using query to hide an element
$(document).ready(function(){
$(".demo").click(function(){
$(this).hide(200);
});
});