Is it possible to, somehow, select a direct child of $(this)?
I have:
var obj = $(this); $(\"ul\", obj).css(\'width\',s*w);
And need
$(this).children('ul') returns a list of direct children.
$(this).children('ul')