Skip to content

Instantly share code, notes, and snippets.

@mallorydxw
Created May 15, 2013 14:46
Show Gist options
  • Save mallorydxw/5584529 to your computer and use it in GitHub Desktop.
Save mallorydxw/5584529 to your computer and use it in GitHub Desktop.
// IE img width/height polyfill
jQuery(function ($) {
$('img').each(function () {
var $this = $(this)
if ($this.attr('width') !== undefined) {
$this.css('width', $this.attr('width')+'px')
}
if ($this.attr('height') !== undefined) {
$this.css('height', $this.attr('height')+'px')
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment