EduardET

img in ie

Dec 7th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. ( function( $ ) {
  2. $( document ).ready( function() {
  3. var img = $( "body.ie .et_pb_blurb_description p img" );
  4. img.each( function() {
  5. var width = $(this).attr("width"),
  6. height = $(this).attr("height");
  7. $(this).css({
  8. 'width': width,
  9. 'height': height,
  10. })
  11. } )
  12. } );
  13. } )( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment