How do I get selectionStart in FireFox?
I've tried:
var editselection=editor1.GetSelection();
editselection.selectionStart << doesn't work
also:
var editdoc=editor1.GetDocument();
editdoc.body.selectionStart << doesn't work
also:
var editwin = editor1.GetWindow();
editwin.selectionStart; << doesn't work
What is the correct method. This is urgent, please...