How do I check if a element has text-shadow set in the CSS ?

With jQuery

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Use the .css(), Luke.

var ts = $('some element selector here').css('text-shadow');
console.log(ts);

Don't believe me? See for yourself.

enter image description here

link|improve this answer
tried it, doesn't work, getting empty string.. – ShadowWarrior Aug 11 '11 at 0:09
What markup? What CSS? The problem is probably elsewhere. – Matt Ball Aug 11 '11 at 0:10
1  
that means it doesn't have a text-shadow set – DA. Aug 11 '11 at 0:11
css: a{text-shadow: 0px 1px 1px #fff;} ..code is just like yours – ShadowWarrior Aug 11 '11 at 0:11
1  
hmm that's weird.. in Opera it doesn't work.. – ShadowWarrior Aug 11 '11 at 0:19
show 4 more comments
feedback

Try this

if(!$('elementSelector').css('text-shadow')){
   //No text-shadow.
}
link|improve this answer
2  
if(!$('some element selector here').css('text-shadow')){ Gee, that looks familiar... – user113716 Aug 11 '11 at 0:16
@patrick - I just copied the selector from Matt's answer, the credit goes to him :) – ShankarSangoli Aug 11 '11 at 0:22
feedback

Your Answer

 
or
required, but never shown

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