jquery get data attribute value

JavaScript
/* html */
<a data-id="123">link</a>

/* js */
$(this).attr("data-id") // returns string "123"

$(this).data("id") // returns number 123 (jQuery >= 1.4.3 only)$('[data-attribute="value"]');/* html */
<a data-number="123">link</a>

/* js */
$(this).attr("data-number") // returns string "123"

$(this).data("number") // returns number 123 (jQuery >= 1.4.3 only)const dataId = $('#elementId').attr("data-id");//<div id="myElementID" data-myvalue="37"></div>
var a = $('#myElementID').data('myvalue'); //get myvalue
$('#myElementID').data('myvalue',38); //set myvalue<a data-id="123">link</a>


var id = $(this).data("id"); // Will set id to 123
Source

Also in JavaScript: