Detecting a position of a cursor over iLayer or frame?
Is it possible to detect a position of a cursor over iframe or HTML frame? For example it can be done over a page with j开发者_StackOverflow中文版Query, but I am not sure over iLayer?
$(document).mousemove(function(e){
$('#cursor').html("X Axis : " + e.pageX + "<br/> Y Axis : " + e.pageY);
})
精彩评论