All pastes #2130986 Raw Edit

Miscellany

public javascript v1 · immutable
#2130986 ·published 2012-03-21 21:51 UTC
rendered paste body
$(document).ready(function(){	$("#button1").click(function(){		$("#wrapper").animate({			right: "-100%",opacity: 0},500,"easeInExpo", function() {$("#content").load("index2.html", function()	{				$("#content").css("right","100%");				$("#content").animate({right:"0",opacity:1} ,500,"easeOutExpo");			});		});	});});