Return to Snippet

Revision: 31754
at September 12, 2010 07:15 by dloop


Initial Code
$(document).ready(function() {
	$("#element-to-toggle").hide();
	$("#trigger").click(function() {
		$("#element-to-toggle").animate({width: "toggle"}, 500);
	});
});

Initial URL


Initial Description
float element to toggle from the direction its coming from

Initial Title
Jquery: Toggle element left or right

Initial Tags


Initial Language
jQuery