vote up 0 vote down star
2

Given the following HTML:

<p><img id="one" alt="at beginning, return true" />Some Text</p>
<p>Some <img id="two" alt="in middle, return false" />Text</p>
<p>Some Text<img id="three" alt="at end, return false" /></p>

How would I be able to tell that $("img#one") is at the beginning of its parent node?

Ideally what I'm trying to do is this:

$("p>img").each(function () {
    var $this = $(this);
    var $parent = $this.parent();
    if ("$this is at the beginning of $parent.html()") {
        $parent.before($this);
    } else {
        $parent.after($this);
    }
});

Edit: with sebasgo's help, here's the final code and result:

$("p>img").each(function () {
    var $this = $(this);
    var $parent = $this.parent();
    if (this == this.parentNode.firstChild) {
        $parent.before($this);
    } else {
        $parent.after($this);
    }
});

<img id="one" alt="at beginning, return true" />
<p>Some Text</p>
<p>Some Text</p>
<img id="two" alt="in middle, return false" />
<p>Some Text</p>
<img id="three" alt="at end, return false" />
flag

4 Answers

vote up 1 vote down check

Use

var elem = $("img#one").get(0)
if (elem.parentNode.firstChild == elem)
{ .... }

Hope this works better.

link|flag
I just tried :first-child and it is true for all 3 cases. – travis Jul 17 at 16:46
1  
As I see jQuery ignores text nodes in its selector engine. Then you schould use plain javascript: var elem = document.getElementById("#one"); if (elem == elem.parentNode.firstChild) {...} – sebasgo Jul 17 at 16:54
perfect thanks! since I'm in a .each() I went with (this == this.parentNode.firstChild) – travis Jul 17 at 17:07
vote up 0 vote down

From similar question on SO.

http://stackoverflow.com/questions/562134/jquery-how-to-match-first-child-of-an-element-only-if-its-not-preceeded-by-a-te

$("p>img").each(function () {
    var prev = this.previousSibling;
    var isThisTheFirstNode = $(this).parent().html().toUpperCase().indexOf('<IMG>') == 0;

    var method = isThisTheFirstNode ? 'before' : 'after';
    $(this).parent[method].before(this);
});
link|flag
vote up 0 vote down

Try this condition:

($parent.contents().eq(0).attr("id") === $this.attr("id"))
link|flag
vote up 0 vote down

Have a look at the :first-child jQuery selector. Given the element, use the :parent selector to get the parent, then check for equality between the parent's first child and the element in question.

link|flag
I just tried :first-child and it is true for all 3 cases. – travis Jul 17 at 16:45

Your Answer

Get an OpenID
or

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