Code:

<div id="d1">d1</div>
<div id="d2">d2</div>
<script>
$(function(){
    var j=$();
    j=j.add("#d1");
    j=j.add("#d2");

    j.remove("#d1");//not this...
    //alert(j.length);
    j.css("border","1px solid red");
});
</script>

I've used j.add() to add elements to j, but how do I remove #d1 from j?

j.remove() is not working, because it removes the #d1 and j.length still be 2.

Thanks all! :)

link|improve this question

1  
@pranay_stacker: $() – Felix Kling Jun 24 '10 at 9:03
feedback

5 Answers

up vote 3 down vote accepted
<div id="d1">d1</div>
<div id="d2">d2</div>
<script>
$(function(){
 var j=$();
 j=j.add("#d1");
 j=j.add("#d2");

 j=j.not("#d1");
 //alert(j.length);
 j.css("border","1px solid red");
});
</script>

demo

link|improve this answer
+1... and I added a demo.. – Reigel Jun 24 '10 at 9:10
@Reigel Thanks for adding demo – Boris Delormas Jun 24 '10 at 9:10
feedback

The problem is, that the manipulation methods (e.g. add()) does not manipulate the object (collection) in-place but returns an altered collection. Thus, you need to assign the return value from remove() not() back to j:

j.remove("#d1");//not this...

Should be

j = j.not("#d1");//not this...

remove() vs. not()

remove() removes the matched set from the DOM (not the set), while not() removes the matched set from the given match leaving the DOM unaltered. I think you're looking for not().

link|improve this answer
feedback

Use the jQuery grep() function:

<div id="d1">d1</div>
<div id="d2">d2</div>
<script>
$(function(){
    var j=$();
    j=j.add("#d1");
    j=j.add("#d2");

    j = jQuery.grep(arr, function(item){
        return item != '#d1';
    });
    j.css("border","1px solid red");
});
</script>
link|improve this answer
Why? It seems a little complex :) – jensgram Jun 24 '10 at 9:17
For expandability of course, in case the filter ever needs to be more complex. But I do agree, for this particular case the chosen answer does the trick just fine. – FreekOne Jun 24 '10 at 9:41
feedback
<div id="d1">d1</div>
<div id="d2">d2</div>
<script>
$(function(){
    var j=$("#d1, #d2");

    j.filter(":not( #d1 )")
    j.css("border","1px solid red");
});
</script>
link|improve this answer
feedback

try the following code:

j.find("#d1").remove();

if not:

j.filter("#d1").remove();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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