Skip to content

Instantly share code, notes, and snippets.

@FernandoVCG33
Last active March 13, 2026 20:41
Show Gist options
  • Select an option

  • Save FernandoVCG33/d0fc44a15d804a4eb3648258981ea697 to your computer and use it in GitHub Desktop.

Select an option

Save FernandoVCG33/d0fc44a15d804a4eb3648258981ea697 to your computer and use it in GitHub Desktop.
Crear o cambiar una id o class
let elemento1=document.getElementById("elemento1");
let elemento2=document.getElementById("elemento2");
//Metodo1
elemento2.setAttribute("class", "verde");
//crear nuevo
elemento2.setAttribute("id", "hola");
//Metodo2
elemento1.className="amarillo";
elemento1.id="otroId";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment