Welcome Guest, Not a member yet? Register   Sign In
Need form submit help
#2

[eluser]Evil Wizard[/eluser]
I assume that is JavaScript?

Using something like jquery to overwrite and hook into the form submit event
Code:
$(document).ready(function () {
    $('#form_id').submit( function () {
                 if(validateLogin()) {
                        $('#form_id').submit();
                 };
                 return false;
        });
forcing the submit to return false all the time prevents the form from being submitted except by execution of code.


Messages In This Thread
Need form submit help - by El Forum - 05-08-2009, 07:32 AM
Need form submit help - by El Forum - 05-08-2009, 08:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB