Sol html
De wikiserver
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Método html de jQuery | Pablo Monteserín</title>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
$("#boton1").click(function(){
$("#wrapper").html('<div style="background:red; width:300px; height:300px"></div>');
});
$("#boton2").click(function(){
alert($("#wrapper").html());
});
});
</script>
</head>
<body>
<input type="button" id="boton1" value="Modificar código html del wrapper">
<input type="button" id="boton2" value="Recuperar el código html del wrapper">
<div id="wrapper">
</div>
</body>
</html>