how to fetch value of data-summary attribute of span using java script
example
<span id="summary-text" data-summary="this value needed">summary of contents </span>
example this value needed
how to fetch value of data-summary attribute of span using java script
example
<span id="summary-text" data-summary="this value needed">summary of contents </span>
example this value needed
Use the dataset object to retrieve attributes prefixed with 'data'.
var data = document.getElementById("summary-text").dataset.summary;
console.log(data); //this value needed