Set a context so a direct children of body is never selected with jQuery - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T00:40:29Zhttp://stackoverflow.com/feeds/question/848829http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/848829/set-a-context-so-a-direct-children-of-body-is-never-selected-with-jquery0Set a context so a direct children of body is never selected with jQuerye-satis2009-05-11T16:08:58Z2009-05-11T19:59:06Z
<p>I have the following HTML code :</p>
<pre><code><html>
<head>
</head>
<body>
<div id="never-selected">
</div>
</body>
</html>
</code></pre>
<p>With JQuery 1.3.2, I would like to create wrapper around $() that allow you to select any element with any combination but the div #never-selected nor its content.</p>
<p>I am trying to do it this way :</p>
<pre><code>_context = false;
getContext = function() {
if (_context === false) {
_gui_dom = jQuery("fuzzy magic selector");
}
return _gui_dom;
};
// return a jQuery object filtered to aim the content of the tartiflet GUI only
select = function(selector) {
return jQuery(selector, getContext());
};
</code></pre>
<p>But I am failling to find the proper formula to cast the "fuzzy magic selector" ;-)</p>
<p>My best shot is <code>jQuery("head *, body *:not(#never-selected, #never-selected *)")</code> but the draw back is that you cannot select head nor body and it's very annoying. Using html * doest work.</p>
http://stackoverflow.com/questions/848829/set-a-context-so-a-direct-children-of-body-is-never-selected-with-jquery/848907#8489070Answer by Rafael for Set a context so a direct children of body is never selected with jQueryRafael2009-05-11T16:26:19Z2009-05-11T16:26:19Z<p>I'm not sure whether I understood the problem, but try using <a href="http://docs.jquery.com/Traversing/not#expr" rel="nofollow">.not()</a> on the result set</p>
<pre><code>select = function(selector){return $(selector).not('#never-selected, #never-selected *')};
</code></pre>
http://stackoverflow.com/questions/848829/set-a-context-so-a-direct-children-of-body-is-never-selected-with-jquery/849647#8496470Answer by KyleFarris for Set a context so a direct children of body is never selected with jQueryKyleFarris2009-05-11T19:25:14Z2009-05-11T19:25:14Z<p>You can write your own custom selector to parse out the stuff you want using any amount of jQuery necessary to grab those elements. Sometimes the selectors they provide by default can't do everything.</p>
<p>I can't think off the top of my head how to achieve what you are asking but you can do something like this:</p>
<pre><code>jQuery.extend(jQuery.expr[':'],{
everything_but: function(el,sel) {
var everything = jQuery(el).clone();
everything.find(sel).remove();
return everything;
}
});
</code></pre>
<p>I definitely can't say my implementation will work but it may give you an idea of how you can implement your own selector to achieve what you want.</p>
<p>It can be used as usual. Something like this:</p>
<pre><code>var select = $('*:everything_but(#never-selected)')
</code></pre>
<p>Writing you own selector seems to be what you are trying to do with your scripts anyways. Good luck!</p>
http://stackoverflow.com/questions/848829/set-a-context-so-a-direct-children-of-body-is-never-selected-with-jquery/849796#8497960Answer by gnarf for Set a context so a direct children of body is never selected with jQuerygnarf2009-05-11T19:59:06Z2009-05-11T19:59:06Z<p>Would perhaps creating a function that calls jQuery() with the arguments it passes and then automatically .filter()'s it might work?</p>
<pre><code>function select() {
var jquery = jQuery.apply(args);
return jquery.filter(":not(#never-selected, #never-selected *");
}
</code></pre>
<p>Not sure that works - it was coded in the air.</p>