I’ve to do the following simple CSS selector using jQuery , but I can’t :
"#test > *"
I’ve tried in many ways but I just can’t do that!
$("#jqt > *")
or
$('*',$("#jqt")).css()
the last one seemed to work but I realized that it shoudnt!!
How should I do this simple selection to add a very simple CSS property (background-image and font-family)????
Thanks in advance
Instead of
$("#jqt > *")try$("#jqt").children()