I have JSON data like this
[
"00-00-02":"first one",
"00-00-04":"the second",
"00-00-09":"third",
.
.
]
How I can display for example: first one in the specified time 00-00-02 and then display the next at its time 00-00-04?
Note: I should do that using javascript
@Geek Num 88 suggests the right way to do it. In such cases usually unix timestamp is used. In case you can’t change the json, you can do something like this