question on using the $() factory function
I want to pass a parameter to the factory function that gets child "ul"s from "this"
so like $(this > ul). this obviously doesnt work since one is an object and the other is a string. Whats the best way to express this?
here is my code which obviously doesnt work.
var li_list_level1 = $('.level1');
li_list_level1.bind('mouseover', function(){
clearTimeout(t);
resetSubmenus("level1");
$(this > ul).addClass('over');
});