Skip to content

Instantly share code, notes, and snippets.

@jfirebaugh
Created September 16, 2010 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfirebaugh/583117 to your computer and use it in GitHub Desktop.
Save jfirebaugh/583117 to your computer and use it in GitHub Desktop.
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$('a').live('click', function () { alert('click'); });
$('form').live('submit', function () { alert('submit'); });
</script>
</head>
<body>
<form><input type="submit"/></form>
<a href="#">Test</a>
</body>
</html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$('form').live('submit', function () { alert('submit'); });
</script>
</head>
<body>
<form><input type="submit"/></form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment