2 forms.. onclick, submit the second form??
I'm simply trying to get one form's submit button to submit another form.. Just can't seem to figure out why it does not work.. Could anybody take a look?
Click Here
- $(document).ready(function(){
$('#submit1').click(function(){
$('#form2').submit();
});
});