I get the following error when I use MarkItUp Editor,

 uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMNSHTMLTextAreaElement.selectionStart]"  nsresult: "0x80004005 (NS_ERROR_FAILURE)"  location: "JS frame :: /jquery.markitup.js :: get :: line 418"  data: no]

the line is

 caretPosition = textarea.selectionStart;

I searched the internet but found nothing that helps me. The problem is in firefox 3.6 and 4.1.

link|improve this question

have you used the try and catch method? try{caretPos...;}catch(e){console.log(e)}, or you could try caretPosition = textarea.selectionStart || 0 – Val May 12 '11 at 14:46
Sounds like a permission issue. Are you trying to access elements in an iframe or another window? – Detect May 12 '11 at 14:48
no its on the same page in the same window, I give the try catch a chance, but strange that is finally working despite of the error – Sebastian May 12 '11 at 14:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.