$(document).ready(function(){ $("body").html("<h1>Texto</h1>") })
$(document).ready(function(){ var body = $("body"); var h1 = document.createElement("h1"); var h1Text = document.createTextNode("Titulo 1"); h1.append(h1); var ul = document.createElement("ul"); })
Test <button id=BotonTest> $("#botonTest").click(function(){ console.log("Hola") })