/ Published in: jQuery
Fade In/Out
Expand |
Embed | Plain Text
$(function() { $(".q1").click(function() { $("#q1").fadeOut('slow'); $("#q2").fadeIn('slow'); }); $(".q2").click(function() { $("#q2").fadeOut('slow'); $("#q3").fadeIn('slow'); }); $(".q5").click(function() { $("#q5").fadeOut('slow'); $("#q6").fadeIn('slow'); }); });
You need to login to post a comment.
