Skip to content

Instantly share code, notes, and snippets.

@ahoward
Created December 12, 2008 07:06
Show Gist options
  • Save ahoward/35042 to your computer and use it in GitHub Desktop.
Save ahoward/35042 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
<!--
jq(function(){
var form = jq('form');
jq('a.submit').each(function(){
var a = jq(this);
var click = a.click;
a.click(function(){
form.ajaxSubmit(function(){ click() });
});
});
});
// -->
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment