I have an inline styles in my page as :
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>:: Inline Style Page ::</title>
<style type="text/css">
<!--
body
{
background: #fff;
font: normal 12px Tahoma, Verdana, Arial;
color: #636363;
}
#header
{
height: 60px;
}
#menu
{
background: #fff;
height: 30px;
}
#footer
{
height: 50px;
background: #fff;
}
-->
</style>
I need to update or add some styles to the inline styles using jquery..
I am trying to update the font, background color of the page/divs/controls using jquery. I will have my inline styles (loaded from database) for the style of my page content. My application's user can change some of the styles and update it back to the database.
Its almost like creating custom page application(asp.net mvc in c#).
How can i change the inline styles of the page using jquery? or is there any other effective way to do it?