Imposta o restituisce coppie proprietà/valore di elementi selezionati
$(selector).prop(property)
$(selector).prop(property,value)
$(selector).prop(property,function(index,currentvalue))
$(selector).prop({property:value, property:value,...})
Se usato per restituire le proprietà, restituisce proprietà del primo elemento corrispondente
Se usato per impostare proprietà, lo fa su tutti gli elementi corrispondenti.
<script>
$(document).ready(function(){
$("button").click(function(){
var h1 = $("h1");
alert(h1.prop("title"));
h1.prop("title","nuovo titolo");
alert(h1.prop("title"));
});
});
</script>
<h1 title="titolo">Test titolo</h2>
<button>test</button>