Guest User

Untitled

a guest
Dec 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. (function($)
  2. {
  3. $.fn.removeStyle = function(style)
  4. {
  5. var search = new RegExp(style + '[^;]+;?', 'g');
  6.  
  7. return this.each(function()
  8. {
  9. $(this).attr('style', function(i, style)
  10. {
  11. return style.replace(search, '');
  12. });
  13. });
  14. };
  15. })(jQuery);
Add Comment
Please, Sign In to add comment