jquery로 이미지의 width height등의 속성을 모두 없애는 방법
<script src="//code.jquery.com/jquery-1.11.0.js"></script>
<script> $( document ).ready( function() { $( 'img' ).removeAttr( 'style' ); } ); </script>