Javascript Methods JavaScript Reference




function function1() {
    var myText = document.selection.createRange();
    if (myText.queryCommandEnabled("Delete") == true) {
      document.execCommand("Delete");
    }


Sample text to be selected and deleted.