We’d like to convert a CSS style entered as string into a JS object.
E.g.,
var input = " border:solid 1px; color:red ";
expected JS object :
{
border:"solid 1px",
color:"red"
}
Of course the number of style entries is unlimited as well as the names of style (border, color, font, z-index, etc…). Thx.
You could use the Javascript split function: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/split
First split the string with
;as the separator, and then for each result split with:, placing the items in an object as you go.e.g.