Hey guys ,
While playing with jquery i've come across the following situation :
$(document).ready(function(){
$("div")[0].css("background-color","blue");
});
I get an error everytime i try to call any method on a particular element from the wrapper set .
I tried with the get()
$("div").get(0);
Same stuff .
I can't spot what the problem is .
Thank u