validity valid setcustomvalidity rangeoverflow patternmismatch isvalid html5 forms checkvalidity

setcustomvalidity - Método html5 checkValidity() no encontrado



rangeoverflow (1)

Tratar:

$(''#profileform'')[0].checkValidity()

Cuando selecciona $(''#profileform'') obtiene un conjunto de selección jQuery, para acceder a las propiedades reales de DOM debe seleccionar el primer elemento.

Estoy intentando usar el método de forma checkValidity ().

http://html5test.com/ me dice que mi navegador (Chrome) admite el método checkValidity a nivel de formulario.

Sin embargo, usando jsfiddle http://jsfiddle.net/LcgnQ/2/ He intentado los siguientes html y javascript snippets:

<form id="profileform" name="profileform"> <input type="text" id="firstname" required> <input type="button" id="testbutton" value="Test"> </form> $(''#testbutton'').bind(''click'',function(){ try{ alert($(''#profileform'').checkValidity()); } catch(err){alert(''err=''+err)}; });

Me object has no method checkValidity() un error: el object has no method checkValidity()

¿Qué estoy haciendo mal?

Gracias.