I have to do html table to excel file, i find a javascript code for it and its working great but my site has classes for elements. I want that classes attributes to style attribute with jquery function or something.
Example
css
.myTable
{
background : black; color:white;
}
html
<table class="myTable"></table>
that is is i want ;
<table style="background : black; color:white;"></table>
when i do this, my excel file will be formated like in my site. there is any way to do this ?