The following code pulls HTML from a table and injects the contents into HTML email.
var content = $j('#product_comparison').html();
The problem with this approach is that the HTML email loses its styling because the original table references an external stylesheet and my understanding of HTML email is that all styles should be inline and not referenced externally or within a <style>
tag.
Are there any Javascript / jQuery methods that can create the HTML with inline styles included so the result would appear correctly in a HTML email message?