I was wondering if tehre was a way to create a style object and the use this to set the styles for a bunch of different components. For example:
I have been playing around with code and havent managed to get anything to work as of yet
Code:
var styleObject = new style();
styleObject.backgroundColor = '#000000';
styleObject.text......
var advancedSearchTable = document.createElement("table");
advancedSearchTable.style = styleObject
I have been playing around with code and havent managed to get anything to work as of yet