In my project element style is added through jquery from somewhere:
May be like this:
$('div').removeAttr('style');
$('div').attr('style','width: 200px !important');
But now, I want to use my own like this:
$('div').removeAttr('style');
$('div').attr('style','width: 400px !important');
But isn't working (may be due to file order), what can I do a force removeAttr('style') for this?