jQuery

jQuery 座標等取得メモ

ウィンドウのクライアント領域サイズの取得

幅:$(window).width()
高さ:$(window).height()

マウスクリック、移動時のハンドラ内で取得するマウス位置

$(selector).mousemove(function(e) {
    x = e.pageX;
    y = e.pageY;
}

リンク画像のサイズ

imgobj = new Image();
imgobj.src = "http://xxx.com/abc.jpg";
alert(imgobj.width + ' * ' + imgobj.height);