In Firefox (Version 79) with the built-in Developer Tools, is there a way to inspect an element and see the value of a data attribute programatically applied (e.g using JQuery's $element.data('name', 'value')
construct)?
Update with example;
For Example, if My HTML is like
<span id="myElement">This is my element</span>
and in my JavaScript, I have done
$("#myElement").data("foo", "bar");
such that there is no data-foo
attribute in the HTML, but it is there programmatically, then when viewing in Firefox, if I "Inspect Element", how can I see the value of it?