Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save SevenZark/609985 to your computer and use it in GitHub Desktop.
/* The first line below just binds a click event function
to an object obtained by writing a CSS-style selector -
which, by the way, is at the heart of jQuery's usefulness */
$("#revealLogin").click(function () {
$("form#userLogin").show();
return false; // This just keeps the browser from jumping to the top
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment