dsheiko / HTML5-Form-Shim

⛔️ [DEPRECATED] That is a jquery plugin, which emulates HTML5 Form Validation on old browsers. The plugin also allows to customize form submission validation tooltips and field validation callbacks (e.g. via XMLHttpRequest)
http://dsheiko.github.io/HTML5-Form-Shim/
71 stars 17 forks source link

Missing ' in Selector #13

Closed srsgores closed 10 years ago

srsgores commented 10 years ago

Line 670 of the most recent build is missing quotation marks within the selector:

$hint = $( "form *[data-validation-message-for=" + id + "]" );

It should be:

$hint = $( "form *[data-validation-message-for='" + id + "']" );
dsheiko commented 10 years ago

Thanks. Fixed on both v2.2 and v.2.3 branches