I have a problem with calling the appropriate parameters for my function from this DOM:
data
weather:Array(1)
0: {id:800, main:"Clouds", description: "few clouds", icon: "02n"}
I write this (but it doesn'work):
$(".myClass").html(data.weather:Array(1).0.description);
How I must write this code to get description?