JQuery Show() method example with slow effect
In the previous JQuery Show() method, we have seen the JQuery effects with normal show of hidden elements. In this example, we are showing an hidden element on button click with slow effect.
In this method, animation will stop in the 600 milli seconds.
Sample Code:
$(document).ready(function(){ $("#btnClick").click(function () { $("p").show("slow"); }); });
Demo:
See More JQuery Interview Questions
See More JQuery Tutorial
Post a Comment
Please give your valuable feedback on this post. You can submit any ASP.NET article here. We will post that article in this website by your name.