Hi,
How to change the background of igTextEditor control in JavaSript?
I take the background value from the database, and cannot be fixed (stored in css).
Thanks,
Dusan.
Hi Dusan,
You can use field method of the editor which gives you jQuery reference to the edit field and then apply your background.
Here is a simple example
var ed = $("#textEditor").igTextEditor("field");
ed.css("background-color", "red");
Its working. Thanks a lot.