jqueryプラグインの基本的な本からプラグインの作成を学ぼうとしていますが、次のプラグインは画像の高さを表示しません。画像の高さは常に0と表示されます。画像の高さを取得するにはどうすればよいですか。
(function($) {
jQuery.fn.gallery = function() {
return this.each(function() {
var e = $(this);
console.log(e);
var h = e.height();
console.log(h);
var w = e.width();
// e.height(40);
// e.width(40);
e.click(function() {
console.log(h);
// $('#gal').remove();
e.clone().prependTo("body").center().click(function() {
$(this).remove();
});
});
});
};
})(jQuery);