Customizing inline style script generated
Hello there,
I embedded an external script to my website which output is generated on button click.
This script creates inline styles which I would like to customize.
I thought of doing so by adding ...
- ...
- $('#submit').click(function() {
- initialize();
- $('#divID div table').css("background-color", "#000");
- }
- ...
... after the call of the function but it seems not to have any effect to the script generated inline styles.
How can I control that?
Many thanks in advance!