Michael Fuerst schrieb:
> Hi,
> 
> how do I combine lt and gt?
> 
> $("p:lt(5):gt(3)") or $("p:lt(5) gt(3)") doesn't seem to work...
> 
> michael


I think I made it once like this (cannot find it anymore):

$("p:lt(5)").filter("p:gt(3)")... ;

Maybe this is enough:

$("p:lt(5)").filter(":gt(3)")... ;



-- Klaus


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to