html5 data attribute issue with long number

html5 data attribute issue with long number

Hi

I’ve found an issue with the data attribute. If we put long number as value of data attribute ( data-longnumber = 111111111111111222222222222222222222233333333333333333333333333333333333333333333333333331111111111111111122222222222222222222222222222222222222222222222222222222211111111111 )
and when fetched using jquery
$(‘div’).data(‘longnumber’)
it returns an exponential value like ( 1.1111111111111112e+209)


What will be the issue?

How can I get the real value?
Is there any solution for this?

Thanks