Skip to content

Instantly share code, notes, and snippets.

@rayets123
Created January 29, 2016 10:56
Show Gist options
  • Save rayets123/cab457c987c43fea74a6 to your computer and use it in GitHub Desktop.
Save rayets123/cab457c987c43fea74a6 to your computer and use it in GitHub Desktop.
search
$(".toggle-mnu").click(function() {
$(this).toggleClass("on");
if ($(".right_sidebar").css("right") == "0px") {
$(".right_sidebar").css("right", "-185px");
}
else{
$(".right_sidebar").css("right", "0px");
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment