Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a div tag that is contenteditable so that users can type in the div. If a user selects some text to make it bold, the following code is executed:

browser.execute("document.execCommand(\"Bold\"); 
document.getElementById(\"EditDIV\").focus()");  

After the execution, the focus is lost and the vertical scrollbar in the browser moves to the top of the browser. I want the cursor to stay at the text where it was before.

I tried the following:

Store the selection position x, y:

Code:

cursorPos=document.selection.createRange().duplicate(); clickx = cursorPos.getBoundingClientRect().left; clicky = cursorPos.getBoundingClientRect().top;

Restore the selection position:

Code:

cursorPos = document.body.createTextRange(); cursorPos.moveToPoint(clickx, clicky); cursorPos.select();

But this code finds the position of the selected text with respect to the beginning of the current view in the browser. Hence, the cursor stays at the same position but the text moves down.

It is expected to make the cursor stay at the text that was selected.

share|improve this question
What is browser.execute()? Also, if all you're doing is calling document.execCommand() and the focus() on the editable element, no browser will lose the cursor position, so there must be more code. – Tim Down Jul 7 '11 at 8:44
browser.execute() is to execute the javascript for the java SWT browser. My question is how to return focus to where i left off after clicking on bold i.e. if you highlight some text and click bold, it'll bold the text, but the focus will not be there anymore. The scrollbar of the browser moves to the beginning of the browser. – Noopur Gupta Jul 27 '11 at 6:46

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.