[jQuery] $.get(0) is causing trouble
$all = $('.listing > .myDivs');
$all.get(0).css('color','#339900');
why would this throw an error "function css does not exist" ??
I tried this too with no luck:
$('.listing > .myDivs').get(0).css('color','#339900');