validator-demo
validator-demo copied to clipboard
Mailgun email address jquery validation plugin http://mailgun.github.io/validator-demo/
It looks like there's a bug with how error validation_error function works. https://github.com/mailgun/validator-demo/blob/master/index.html#L88 ``` // if email is invalid function validation_error(error_message) { $('#status').html(error_message); } ``` `$('#status').html(error_message);` does not fire. The...
I'd like to install with npm.
Hi, I'm using your validator for an email in a form. I can't figure out how to submit the form when the email is valid. I tried with $('#form').submit(); and...
User is able to customize error messages
This fix helps with the extensibility of the `in_progress`, `error`, and `success` callback functions.
We should provide a minified version of the validator script for use on live web sites: http://www.closure-compiler.appspot.com/home If we are doing minified scripts, we should also be tagging releases in...
Selector
Can you add the original selector value? I want to do this: $('input[type="email"]').mailgun_validator({ api_key: 'pubkey-XXXXXXXXXX', in_progress: function(){ console.log('MG Validating'); }, success: function(data){ if (!data.is_valid) { mailgunError($(this).selector, data); } else {...