18
.prop () vs .attr ()
Quindi jQuery 1.6 ha la nuova funzione prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) o in questo caso fanno la stessa cosa? E se io non devo passare ad usare prop(), tutte le vecchie attr()chiamate si romperà se posso passare a 1,6? AGGIORNARE selector = …
2301
javascript
jquery
dom
attr
prop