hello I have 3 DIVs that contain 1,2,3
<div>1</div>
<div>2</div>
<div>3</div>
and have this JSON
[{
"FactoreId:1": "FactoreItems:a, b, c, d, e"
}, {
"FactoreId:2": "FactoreItems:g,f"
}, {
"FactoreId:3": "FactoreItems:i, k, h"
}]
I want that when I hover over the DIVs that their values are checked.
If DIV contains 1 show the FactoreItems of "FactoreId:1": "FactoreItems:a, b, c, d, e", if it contains 2 show the FactoreItems of "FactoreId:2": "FactoreItems:g,f" and so on ....