Imposta o restituisce il contenuto html di un elemento
$(selector).html()
$(selector).html(content)
$(selector).html(function(index,currentcontent))
Se usato per restituire l’html, restituisce l’html del primo elemento corrispondente
Se usato per impostare l’html, lo fa su tutti gli elementi corrispondenti.
<script>
$(document).ready(function(){
$("button").click(function(){
alert($("p").html());
});
});
</script>
<p>paragrafo<br>testo</p>
<button>prova</button>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").html("<strong>nuovo paragrafo</strong> in grassetto");
});
});
</script>
<p>paragrafo<br>testo</p>
<button>prova</button>