agregar atributo jquery

Solutions on MaxInterview for agregar atributo jquery by the best coders in the world

showing results for - "agregar atributo jquery"
Sam
24 May 2019
1<!-- Elemento html -->
2<div id="cabecera"></div>
3<script>
4  //Seleccionamos el elemento con id=cabecera y le añadimos el atributo title
5  $("#cabecera").attr("title","Cabecera de la página");
6  //El elemento ahora quedará asi: <div id="cabecera" title="Cabecera de la página"></div>
7</script>