• Resolved koolvin

    (@koolvin)


    jQuery('#event_form').change(function() {
    	validateForm();
    });

    This is part of the admin-event.php function. In this form, the user is required to click outside of a required field prior to being able to click the submit button. If the user has entered a required field last, he must go through a rather complex troubleshooting scenario that would end in more work for me.

    A better alternative is this:

    jQuery('#event_form').keyup(function() {
    	validateForm();
    });

    It immediately validates the form after each keystroke.
    Just my 2cents.

    http://wordpress.org/extend/plugins/ajax-event-calendar/

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Ajax Event Calendar] Validation’ is closed to new replies.