How to get X Y position of scroll/mouse/cursor of CKEDITOR Text area

Tedaunupe

New Member
I am using \[code\]CKEDITOR 4\[/code\]. How to find out the scroll/mouse/cursor X Y position (not of the window)?I've tested the below code but its giving the window's scroll position:\[code\]var win = new CKEDITOR.dom.window( window );var pos = win.getScrollPosition();alert( "pos.x :: " + pos.x + " pos.y :: " + pos.y );\[/code\]I need the X Y position of the CKEDITOR text area instead.
 
Back
Top