Saturday, July 28, 2012

Removing inline CSS styles using Jquery?

You can remove that inline style with this:

$(document).ready(function(){
  $('.myheader').each(function(idx,el){
    el.style.marginTop='';
  });
});

No comments:

Post a Comment