Problem using jQuery > selector - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T19:20:48Zhttp://stackoverflow.com/feeds/question/760734http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/760734/problem-using-jquery-selector0Problem using jQuery > selectorwheresrhys2009-04-17T14:57:12Z2009-04-17T15:07:31Z
<p>I have something like the following jQuery code</p>
<pre><code>buttons =
document.createElement('div');
$(buttons).addClass("overlay_buttons").css({
styles });
save =
document.createElement('input');
$(save).attr({ type: "button",
value: "Save"
}).css({width:'45%'});
undo =
document.createElement('input');
$(undo).attr({ type: "button",
value: "Start again"
}).css({width:'93%'});
//add elements to document
$(buttons).append(undo);
$(buttons).append(save);
$(buttons +'> input').css({
shared styles for buttons
});
</code></pre>
<p>The problem I have is that the shared styles for the buttons don't apply. I get no error messages. I've also tried using other jQuery methods to check it's not the css that's the problem, but nothing applied to $(buttons +'> input') works.</p>
<p>Does anyone have any idea why?</p>
http://stackoverflow.com/questions/760734/problem-using-jquery-selector/760755#7607554Answer by Paolo Bergantino for Problem using jQuery > selectorPaolo Bergantino2009-04-17T15:01:52Z2009-04-17T15:07:31Z<p>Your problem is here:</p>
<pre><code>$(buttons +'> input').css({
shared styles for buttons
});
</code></pre>
<p><code>buttons</code> at that point is not a string, but a DOM element object. So when you try to append this object to the string <code>> input</code> your selector ends up being something like "[object HTMLDivElement] > input", which is obviously not right.</p>
<p>This <em>should</em> work, as according to the <a href="http://docs.jquery.com/Traversing/children#expr" rel="nofollow"><code>children()</code></a> documentation it only selects the immediate children, replicating the behavior of the <code>></code> selector:</p>
<pre><code>$(buttons).children('input').css({
shared styles for buttons
});
</code></pre>
<p>Or, if that doesn't, which it should, then you can try this, although I don't feel good about it:</p>
<pre><code>$('> input', buttons).css({
shared styles for buttons
});
</code></pre>
<p>Also, I am not sure why you are individually creating the elements with <code>createElement</code>. jQuery supports creating DOM elements <a href="http://docs.jquery.com/Core/jQuery#htmlownerDocument" rel="nofollow">on the fly</a>. Using that, you can shorten this:</p>
<pre><code>undo =
document.createElement('input');
$(undo).attr({ type: "button",
value: "Start again"
}).css({width:'93%'});
</code></pre>
<p>To this:</p>
<pre><code>$('<input>').attr({ type: "button",
value: "Start again"
}).css({width:'93%'});
</code></pre>