Rimuove proprietà impostate tramite il metodo prop()
$(selector).removeProp(property)
Esempio
<script>
$(document).ready(function(){
$("button").click(function(){
var h1 = $("h1");
alert(h1.prop("title"));
h1.prop("title","nuovo titolo");
alert(h1.prop("title"));
h1.removeProp("title");
alert(h1.prop("title"));
});
});
</script>
<h1 title="titolo">Test titolo</h2>
<button>test</button>