Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 355 Bytes

File metadata and controls

20 lines (16 loc) · 355 Bytes
<!DOCTYPE html>
<html>
<body>

  <div data-widget-name="menu">Elige el género</div>

  <script>
    // obteniéndolo
    let elem = document.querySelector('[data-widget-name]');

    // leyendo el valor
    alert(elem.dataset.widgetName);
    // o
    alert(elem.getAttribute('data-widget-name'));
  </script>
</body>
</html>