If I do $var = $('[height > 100]');
It is throwing error runtime error
Microsoft JScript runtime error: Syntax error, unrecognized expression: [height > 100]
But equals(=) works
$var = $('[height = 100]');
So how can I filter for the first case? (using attribute selector only just because I am learning it)
I have <table height="200">
Thanks
Here
targetwill be replaced with any valid jQuery selectoreNote
If you use
heightwithstylecss then your way is not possible.According to edit
Then try
DEMO
OR
DEMO
According to commebt
DEMO