http://www.html5rocks.com/es/tutorials/forms/html5forms/
http://www.w3schools.com/html/html5_form_attributes.asp
Mostrando entradas con la etiqueta HTML5. Mostrar todas las entradas
Mostrando entradas con la etiqueta HTML5. Mostrar todas las entradas
miércoles, 17 de septiembre de 2014
lunes, 15 de septiembre de 2014
tipos de inputs de html5
http://sixrevisions.com/html5/new-html5-form-input-types/
http://nanvel.name/weblog/html5-input-types/
http://www.anerbarrena.com/nuevos-input-html5-3739/
http://www.anerbarrena.com/html5-search-input-2315/
http://www.bipinjoshi.net/articles/e421a206-cb68-428b-939b-9e42a2feeec3.aspx
http://nanvel.name/weblog/html5-input-types/
http://www.anerbarrena.com/nuevos-input-html5-3739/
http://www.anerbarrena.com/html5-search-input-2315/
http://www.bipinjoshi.net/articles/e421a206-cb68-428b-939b-9e42a2feeec3.aspx
sábado, 6 de septiembre de 2014
el atributo data en JQUERY HTML5
http://api.jquery.com/data/
http://stackoverflow.com/questions/7261619/jquery-data-vs-attr
interesante
http://stackoverflow.com/questions/12405874/kendo-ui-grid-display-grid-on-a-link-click
http://stackoverflow.com/questions/7261619/jquery-data-vs-attr
interesante
If you are passing data to a DOM element from the server, you should set the data on the element:
<a id="foo" data-foo="bar" href="#">foo!</a>
The data can then be accessed using
.data() in jQuery:console.log( $('#foo').data('foo') );
//outputs "bar"
However when you store data on a DOM node in jQuery using data, the variables are stored in on the nodeobject. This is to accommodate complex objects and references as storing the data on the node element as an attribute will only accommodate string values.
Continuing my example from above:$('#foo').data('foo', 'baz');
console.log( $('#foo').attr('data-foo') );
//outputs "bar" as the attribute was never changed
console.log( $('#foo').data('foo') );
//outputs "baz" as the value has been updated on the object
http://stackoverflow.com/questions/12405874/kendo-ui-grid-display-grid-on-a-link-click
viernes, 1 de agosto de 2014
Suscribirse a:
Entradas (Atom)
