c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
JQuery

How to get the value from Html data-id using JQuery?

| | JQuery

If you want to get the data id value from the html element like anchor tag, button or li when the user clicks, you can get using $(this).attr(“data-id”) and in newer versions >=1.4.3 we can use $(this).data().

<a data-id="321" class="upvote"></a>

$(".upvote").on("click", function () {

           var id = $(this).attr("data-id"); // it will return string value 321

          });

In newer versions >=1.4.3:

 

var id = $(this).data(); // it will return number 321