Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some jquery-like function:

function(elem) {
    return $('> someselector', elem);
};

The question is how can i do the same with querySelector()?

The problem is > selector in querySelector() requires parent to be explicitly specified. Is there any workaround?

share|improve this question

3 Answers

up vote 12 down vote accepted

You can't. There's no selector that will simulate your starting point.

The way jQuery does it (more because of a way that qsa behaves that is not to their liking), is that they check to see if elem has an ID, and if not, they temporarily add an ID, then create a full selector string.

Basically you'd do:

var sel = '> someselector';
var hadId = true;
if( !elem.id ) {
    hadID = false;
    elem.id = 'some_unique_value';
}

sel = '#' + elem.id + sel;

var result = document.querySelectorAll( sel );

if( !hadId ) {
    elem.id = '';
}

This certainly isn't jQuery code, but from what I remember, it is basically what they do. Not just in this situation, but in any situation where you're running a selector from the context of a nested element.

Source code for Sizzle

share|improve this answer

That worked for me:

Node.prototype.search = function(selector)
{
    if (selector.indexOf('@this') != -1)
    {
        if (!this.id)
            this.id = "ID" + new Date().getTime(); 
        while (selector.indexOf('@this') != -1)
            selector = selector.replace('@this', '#' + this.id);
        return document.querySelectorAll(selector);
    } else 
        return this.querySelectorAll(selector);
};

you will have to pass the @this keywork before the > when you want to search for immediate children.

share|improve this answer

CLAIM

Personally I would take the answer from patrick dw, and +1 his answer, my answer is for seeking alternative solution. I don't think it deserves a downvote.

Here is my attempt :

function q(elem){
    var nodes = elem.querySelectorAll('someSeletor');
    console.log(nodes);
    for(var i = 0; i < nodes.length; i++){
        if(nodes[i].parentNode === elem) return nodes[i];
    }
}

see http://jsfiddle.net/Lgaw5/8/

share|improve this answer
1  
Couple of problems with that. @disfated wants it to work with querySelector, which means that :eq() can't be used. Even if it could, your selector would return the element that is :eq() to its appearance on the page, not :eq() to the index of its parent (which is where you're getting the idx). – user113716 Jun 26 '11 at 2:36
+1 about the :eq() & querySelector. And I should add the context $(elem).parent(). – Liangliang Zheng Jun 26 '11 at 2:45
Unfortunately that won't work either. When the selector runs from the context of the parent, it starts with the left most child and finds all matching elements no matter how deeply nested, the continues on. So say the elem is at index 4, but there's a previous sibling that has a different tagName, but it has nested inside it an element with the matching tagName, that nested element will be included in the results before the one you're targeting, again throwing off the index. Here's an example – user113716 Jun 26 '11 at 2:59
...anyway, what you're ultimately doing is a more complex version of the code in the question, which does work. $('> someselector', elem); ;o) – user113716 Jun 26 '11 at 3:01
Note that I have idx++, try jsfiddle.net/Lgaw5/2 – Liangliang Zheng Jun 26 '11 at 3:02
show 10 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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