Customizing inline style script generated

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 ...

  1. ...
  2. $('#submit').click(function() { 
  3.     initialize();
  4.     $('#divID div table').css("background-color", "#000");
  5. }
  6. ...

... 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!