In my project I am currently using some custom data-* attributes in my HTML to convey some extra data that will be used by jQuery. I found the .data() method and noticed that if I have a data-* attribute data-my-attribute that I can retrieve its value in jQuery by selecting the element with the attribute and calling .data("my-attribute").
I assumed that this was the way it is supposed to be used (did not look into the documentation) and used it through out my jQuery code. However, now I noticed that when I put for example a string "000005643" in the HTML data-* attribute, .data("my-attribute") return 5643 while .attr("data-my-attribute") return "000005643". Where the latter is what I wanted. This led me to look up the documentation and actually found out that there is more to .data() than I thought. Also, I never saw any text or example that indicates you should use .data() to retrieve values of data-* attributes. This worries me that I am doing something fundamentally wrong.
So should I cease and desist with using .data() in this manner or not? If not, could you link me to some documentation about the .data() function that explains this use.