/ Published in: jQuery
float element to toggle from the direction its coming from
Expand |
Embed | Plain Text
$(document).ready(function() { $("#element-to-toggle").hide(); $("#trigger").click(function() { $("#element-to-toggle").animate({width: "toggle"}, 500); }); });
You need to login to post a comment.
