When creating websites I often use jQuery's .data() function to add data to elements.

Is it possible to view all data which is stored with an element in Chrome?

So when I inspect an element it shows the data in Chrome itself.

If not would it be possible to write a plugin to 'extend' to Chrome element inspector to also show to data?

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Open the inspector, and into the console, type

$('<some selector>').data()

and then hit return to evaluate the data() method and show its return value directly.

There's no need to use console.log unless you're calling it within non-interactive code.

link|improve this answer
feedback

Type into the chrome console:

console.log($('selector').data());

and it will list the data in that element

link|improve this answer
Sweet! Thanks! – RepWhoringPeeHaa May 9 '11 at 19:57
@PeeHaa, no problem ^_^ – Neal May 9 '11 at 19:57
feedback

Chrome Query

link|improve this answer
feedback

For this reason, I don't use the $(selector).data() pattern, and, instead I use a more html natural $(selector).attr('data-name','value') which adds the values to the actual html.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.