Say I have this little snippet:
<p data-color="red">Hello world</p>
An I want to set its color to its own data-attribute, like this:
$('p').css({
color: $(this).data('color')
});
For some reason, that doesn't work. Anyone know what I'm doing wrong?
$(this)is not thep->thisand so will not work inside the arg. – Vega May 14 '12 at 19:00$("p")? – Kriem May 14 '12 at 19:02