1/* html */
2<a data-id="123">link</a>
3
4/* js */
5$(this).attr("data-id") // returns string "123"
6
7$(this).data("id") // returns number 123 (jQuery >= 1.4.3 only)
1//<div id="myElementID" data-myvalue="37"></div>
2var a = $('#myElementID').data('myvalue'); //get myvalue
3$('#myElementID').data('myvalue',38); //set myvalue