id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
6672	Selectors not working properly for textNodes	sharad.banka@…		"Hi, I am facing problems regarding selectors with text Node.
I have a sample page like:
<body>
    Some text
    <div id='child'>
        Some More Text
    </div>
</body>

Now when I run the jQuery command:
$(""body"").children().remove();
The page still shows ""Some text"". All the children arent removed. However $(""body"").contents().remove(), removes all content.

Also when I run this filter:
awp$(""body"").contents().filter(function() { 
		return (this.id != 'child');}).remove();
I get the expected output ""Some more text"".
However
awp$(""body"").contents().filter('[id!=child]').remove()
even thogh actually the same filter returns a faulty output
""Some text.
Some More text.""

Conclusion: The filters dont properly select text Nodes.



 "	bug	closed	undecided	1.4.3	selector	1.4.2	wontfix	TextNodes, filter			
