1

Here is code:

var selection;
var edited_selection;
var value;
var string;

    $("#text").select(function(){ // $("#text") is textarea
       value = $("#text").val(); 
       selection = window.getSelection();   
       string = selection.toString();     
    });

    $("#bold").click(function(){
       edited_selection = "<b>" + string + "</b>"; 
       var replacing = value.replace(string, edited_selection);
       $("#text").val(replacing);
    });

When I click on some common number or character, it will wrap the first occurence of that character or number. For example easy sentence: "Hello there". If I will try to select the last "e" from that sentence, it will select the first occurence of "e" and it will wrap like e, but i wanted to select the last "e". How can I do it? Thank you for answers.

Michal Urban
  • 81
  • 1
  • 9

0 Answers0