only first character is typed in language selected, in mozila, opera browser
solved by editing common.js provided with Indic script.
if( isIE ){ if(typeof document.selection != "undefined" ){ // FOR MSIE range_sel = document.selection.createRange(); range_obj = textarea.createTextRange(); range_obj.moveToBookmark(range_sel.getBookmark()); range_obj.moveEnd('character',textarea.value.length); pos = len - range_obj.text.length; } }else if(typeof textarea.selectionStart != "undefined"){ // FOR MOZILLA pos = textarea.selectionStart; }
Comments
Comment #1
jeshu commentedsolved by editing common.js provided with Indic script.