Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.  $("#post-content-menu .top-link").click( function(event) {
  3.    event.preventDefault();                                                                                       
  4.    var postmenu = $("#post-content-menu .menu");
  5.    if postmenu.is(':hidden') { postmenu.show(); }
  6.    else { postmenu.hide(); }
  7.   });
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement