My CSS selector is like this:
.s4-ql ul.root > li > menu-item
I need to do some dynamic coloring on that item, so need to select the element using jQuery.
How do I do that?
jQuery('.s4-ql ul.root > li > menu-item')
doesn't seem to work because it doesn't seem to understand the >
character or something. Can someone help me to select the menu-item
?