I could probably muddle through the code for this, but before I do I thought I\'d ask if there\'s a quick and/or built-in way or plugin for this...
Given a table wit
Use plain JavaScript for this :
$('.mytable').style.cssText;
Your welcome ;]
ps. same for adding inline css:
$('.mytable').style.cssText = "border:1px solid red;";