en.javascript.info/2-ui/1-document/06-dom-attributes-and-properties/1-get-user-attribute/task.md
2017-12-06 05:20:36 +03:00

315 B

importance: 5


Get the attribute

Write the code to select the element with data-widget-name attribute from the document and to read its value.

<!DOCTYPE html>
<html>
<body>

  <div data-widget-name="menu">Choose the genre</div>

  <script>
    /* your code */
  </script>
</body>
</html>