[Vuejs]-Wrap selected text inside div in stars vuejs

0👍

This will help with the HTML:

<button id="button" onclick="makeSelectedTextBold()">here<button>
<textarea class="outline-none w-100" id="textAreaExample3" rows="4" placeholder="taper votre texte" ></textarea>

This will help with the JS:

document.getElementById("button").addEventListener("click");
function makeSelectedTextBold(){
    let text = document.getElementById("textAreaExample3").value;
    console.log("text:" + text)
    let selection = window.getSelection();
    console.log("selection:" + selection)
 }    

And this should help with finding and replacing the text:
Find and Replace for an Textarea

0👍

I don’t quite understand what you’re trying to do. Make ALL the text in the text area bold, or make the text appear in a console log in bold?

Leave a comment