18
.prop () vs .attr ()
Entonces jQuery 1.6 tiene la nueva función prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) o en este caso, ¿hacen lo mismo? Y si no debe de cambiar a usar prop(), todas las viejas attr()llamadas se romperá si me cambio a 1.6? ACTUALIZAR selector = '#id' …
2301
javascript
jquery
dom
attr
prop