Interview Questions

In jQuery, what kind of handy effects are provided ?

jQuery Interview Questions and Answers


(Continued from previous question...)

In jQuery, what kind of handy effects are provided ?

In jQuery, a couple of handy effects are provided, to really make your web site stand out. To put this to the test, change the click that you added earlier to this:

$("a").click(function(event){
event.preventDefault();
$(this).hide("slow");
});

(Continued on next question...)

Other Interview Questions