I've got a very simple jQuery call to toggle a class of active on submit button click:
$('#submit_button').bind('click',function() {
$(this).toggleClass('active');
}
It works great on the initial click. Then the js call does not occur afterwards. Is there anything I need to do to override GF js calls?