Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react get data attribute from element

<div data-id={someId} >Test</div>

const id = e.target.getAttribute("data-id");
//alternate to getAttribute
const id = e.target.attributes.getNamedItem("data-id").value;
Source by www.pluralsight.com #
 
PREVIOUS NEXT
Tagged: #react #data #attribute #element
ADD COMMENT
Topic
Name
8+2 =