On page I want user can change background of page, apply background image to page. On save click this changed background should be saved in css class.
Suppose my css class is
#content
{
background:green;
}
As shown if I select blue color then blue color should be applied to that page background.
And on save button click css should change to
#content
{
background:blue;
}