解像度が 980px 未満の場合は、以下のコードを実行する必要があります ( a から幅と高さを削除しますimg
)。コードはどうなりますか?ありがとうございました
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($){
$('img').each(function(){
$(this).removeAttr('width')
$(this).removeAttr('height');
});
});
</script>