img の高さを見つけて、attr としてインラインで適用しようとしています。現在 img には src 属性しかありませんが、高さを動的に見つけて適用したいと考えています。
現時点の
<img src="#">
望ましい
<img src="#" height="find this images height">
これは私がこれまでに持っているものです
$(document).ready(function() {
$("img").load(function() {
var width = $(this).width();
var height = $(this).height() ;
$(this).attr( "height", "+ height" );
});
});
何か案は?