How to change css style for the preview page dynamically using jquery.
two dropdown with right side preview page, dropdown loaded with color, based on the selection, preview page css (bg color, font color) should change,
We have tried with below snippets, bg color is working, but font color not working.
//bg_color: this variable contain the dynamic BG color selection values
//font_color: for font color.
$("#web_preview_right_div").css({'background-color':bg_color});
$("#web_preview_right_div").css({'color':font_color});
in inspect element,
when i change dropdown, below color:rgb(255,128,0) code changing, but font color not applying.
also i added important, but it is not working.
background-color: rgb(245, 208, 169); color: rgb(255, 128, 0);