I know JavaScript doesn't support associate array. We will create an object with a key as a string.
Here is https://jsfiddle.net/maheshwaghmare/sgw07L8L/6/
E.g. "hometitle":[
["fontsize","12px"],
["lineheight","16px"],
],
But, I need to create it like:
E.g. ".home-title":[
["font-size","12px"],
["line-height","16px"],
],
So, In this situation how can I store and retrieve values without storing repetitive values in same parent.
E.g. (.home-title) doesn't contain another (font-size)
NOTE: Parents(.home-title) may be - (.home-title .headings) - (#header .title) etc
I know we could not store this kind of keys in object.
Any solution..! Thanks in Advance...!