How to remove all inline styles using jQuery?
Inline styles are not recommended and it also create problem while managing the site. Here is a one liner jQuery solution to remove all inline styles from the page.
$("* [style]").removeAttr("style");
Feel free to contact me for any help related to jQuery, I will gladly help you.