Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SevenZark/609985 to your computer and use it in GitHub Desktop.
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