I am having a hard time selecting text and replacing that selection when there are multiple occurrences. It always reverts to the first occurrence and replaces it.
Here is the scripting I am using and if the selection only appears once I am prefect. When it appears more than once it grabs the first.
var self=$('#textarea');
GetSelected={};
GetSelected=function(){
var txt='';
if(window.getSelection){
txt=window.getSelection();
}
else if(document.getSelection){
txt=document.getSelection();
}
else if(document.selection){
txt=document.selection.createRange().text;
}
return txt;
}
self.html(self.html().replace(selection, '<b>' + selection + '</b>'));
Is there something I am missing, that know which selection to replace?