I user jQuery 1.6.1 and browse is Chrome 11
I put some data in DIV, like this:
<div id="user" data-user-id="68029454802354176"></div>
and try to use .data() to fetch the userId
console.log($('#user').data('userId'));
I must get 68029454802354176, but it just return 68029454802354180
Why does it change my number?