I have a string that is json like this:
{
"2045532196113651": [{
"height": 42,
"width": 75,
"source": "https://url1"
}, {
"height": 42,
"width": 75,
"source": "https://url2"
}],
"2045532296113641": [{
"height": 50,
"width": 75,
"source": "https://url3"
}, {
"height": 50,
"width": 75,
"source": "https://url4"
}]
}
The string has the variable name jsondata.
I want to get the numbers of the indexes in the json object (2045532196113651 and 2045532296113641) in this example. Also I want to get the 4 urls (url1, url2, url3, and url4).
How do I do that? I can use jquery.