Given a large JSON table in localStorage and a given key, how to access an associated value, and use it as a condition to CSS ?
Given the following JSON:
var data = [
{ 'myKey': 'A', 'status': 0 },
{ 'myKey': 'B', 'status': 1 },
{ 'myKey': 'C', 'status': 1 },
{ 'myKey': 'D', 'status': 1 }
];
the following html to stylize:
<p id="A">AA</p>
<p id="B">BB</p>
<p id="C">CC</p>
<p id="D">DD</p>
and the following css :
.status1 { color: green; }
.status0 { color: red; }
It's one of the basic principle behind "click to favorite/ favorite list / favorite star".