Как изменить data- с помощью jquery?
Ответ
<a data-id=”123″>link</a>
$(this).data(“id”) // returns 123
$(this).attr(“data-id”, “321”); //change the attribute
$(this).data(“id”) // STILL returns 123!!!
$(this).data(“id”, “321”)
$(this).data(“id”) // NOW we have 321