I am using this as a jquery selector: #menuleft ul.AspNet-Menu > li.AspNet-Menu-Leaf (it’s a border-radius enabling script for IE – called PIE) but I don’t know if I can actually do this in jquery? Do I need to use .children instead?
Thank you very much for your help in advance!
jQuery does support the child selector.
$('#menuleft ul.AspNet-Menu > li.AspNet-Menu-Leaf')should work.jQuery documentation: Child Selector