| javascript Programming Glossary: this.createtextrangeKeep text selection when focus changes http://stackoverflow.com/questions/1592637/keep-text-selection-when-focus-changes  this.focus this.setSelectionRange start end else if this.createTextRange var range this.createTextRange range.collapse true range.moveEnd.. start end else if this.createTextRange var range this.createTextRange range.collapse true range.moveEnd 'character' end range.moveStart.. 
 show different keyboard character from the typed one in google chrome http://stackoverflow.com/questions/3579219/show-different-keyboard-character-from-the-typed-one-in-google-chrome  document.selection.createRange  var textInputRange this.createTextRange  var precedingRange this.createTextRange  var bookmark selectionRange.getBookmark.. textInputRange this.createTextRange  var precedingRange this.createTextRange  var bookmark selectionRange.getBookmark  textInputRange.moveToBookmark.. val.slice end start  Move the caret textInputRange this.createTextRange  textInputRange.collapse true textInputRange.move character.. 
 Can I conditionally change the character entered into an input on keypress? http://stackoverflow.com/questions/3923089/can-i-conditionally-change-the-character-entered-into-an-input-on-keypress  document.selection.createRange  var textInputRange this.createTextRange  var precedingRange this.createTextRange  var bookmark selectionRange.getBookmark.. textInputRange this.createTextRange  var precedingRange this.createTextRange  var bookmark selectionRange.getBookmark  textInputRange.moveToBookmark.. val.slice end start  Move the caret textInputRange this.createTextRange  textInputRange.collapse true textInputRange.move character.. 
 |