vote up 2 vote down star

How can I use jQuery to determine whether an element has a certain style set inline.

E.g, given the document

<style>
.MyClass { position: relative }
</style>
...
<div class="MyClass" id="div1" style="position: absolute"/>
<div class="MyClass" id="div2"/>
...
<script>
function f() {
    assert($('#div1').SOMETHING('position') == 'absolute');
    assert($('#div2').SOMETHING('position') == '');
}
</script>

If I use .css('position'), div2 is reported as being 'relative'. How can I determine which styles have actually been set inline?

flag

66% accept rate
if css('position') says relative, then that's because it is set to relative with your CSS class MyClass... div1, however should be reported as "absolute". – peirix Sep 3 at 11:25
@peirix: I know, and the rendering is correct. However, I want to know whether I've set it inline. And sometimes I set position: relative inline as well, so I need to distinguish all these cases. – erikkallen Sep 3 at 11:30
Oh. So what you're asking is if there is a way to know wether a certain style is set inline or using CSS markup? In which case I don't really think there is, except checking its style attribute as TTG suggests below, and parsing it for information... – peirix Sep 3 at 11:36

4 Answers

vote up 1 vote down

what about .attr('style')?
And here's a link to the jQuery docs.

link|flag
just remember that if you use attr('style') you get "position:relative" in return and every other inline style as well... – peirix Sep 3 at 11:27
I could do that, but then I'd have to parse the returned string. I'm going to set more styles than the position inline. – erikkallen Sep 3 at 11:29
vote up 3 vote down

You could create your own custom selector:

$(document).ready(function(){
    $.extend($.expr[':'], {
        positionAbsolute: positionAbsolute,
    });
});

function positionAbsolute(el) {
    return $(el).css("position").indexOf("absolute") >= 0;
}

And then access this like so

if ($("#MyDiv").is(":positionAbsolute")){
    alert("Position absolute");
}

Does the style have to be inline? If you declared it in a CSS class, e.g,

.positionAbsolute{position: absolute}

and then you could use a class selctor instead:

if ($("#MyDiv").is(".positionAbsolute")){
    alert("Position absolute");
}
link|flag
+1. Not because it solved my problem, but because it's a really cool thing to do. However, For the reason stated in the question I can not use .css('position') – erikkallen Sep 3 at 13:30
vote up -1 vote down

Well you could just use the .css method, this returns all of the styles attached to that element.

link|flag
I stated in the question why I could not do that. – erikkallen Sep 3 at 12:39
vote up 0 vote down check

I ended up doing

assert($('#div2').get(0).style.position == 'relative');

but I was hoping for a more jQueryish way of doing it.

link|flag
You could put this code into the custom selector as desribed in my answer below – James Wiseman Sep 3 at 14:49
I could, but it wouldn't help me. My problem is "given this element, is its position set to relative?", but making the custom selector would solve the problem "Given these objects, which of them have their position set to relative?". That could also be a problem which someone need to solve, but not me, at least not now. – erikkallen Sep 3 at 17:13

Your Answer

Get an OpenID
or

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