How do I use the execCommand() in Chrome? Here is the code I have right now It is being used to insert a special character when hitting the tab button

function editAble(supr){
    document.getElementById('codeline').contentEditable='true';
    document.getElementById('codeline').onkeydown=function(e)
        {

        if(e.keyCode==9){
            e.preventDefault();
            range1 = document.getElementById('codeline');
            range1.execCommand("InsertHtml",false,"p");

        }
    }
}
link|improve this question

62% accept rate
I smell XY problem. – Hello71 Oct 9 '11 at 3:27
? what do you mean by that? – Jonah Allibone Oct 9 '11 at 3:43
feedback

1 Answer

up vote 1 down vote accepted

The execCommand() method is a method of Document objects, not elements. IE also provides execCommand() as a method of its TextRange and ControlRange objects, but these are not present in other browsers.

document.execCommand("InsertHtml", false, "p");

You may want to consider what happens if the user presses the Tab key when the user has previously selected some text: in that case you'd probably want to delete the contents of the selection before inserting your tab character.

link|improve this answer
I understand what you mean, I just have 0 idea how to approach it correctly. I feel like what I have should work, but it just... doesn't. Also, in every other browser but chrome, if I have the contentEditable area set to a pre, than the Tabs work without JavaScript – Jonah Allibone Oct 9 '11 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.