Tabla de Contenidos

JQUERY

Generar un encabezado

$(document).ready(function(){
  $("body").html("<h1>Texto</h1>")
})

Generar una lista

$(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");
 
 
})

Botones

Test <button id=BotonTest>
 
 
 
$("#botonTest").click(function(){
  console.log("Hola")
})