Change CSS class within textarea to mark a part of the text
Hello Community.
I'm searching for a solution to change the CSS class of text parts. The goal is to get marked text parts within the textarea widget.
In my current test experience, the textarea widget is driven by a parameter
$scope.app.params.input = "textarea with marked text";
And I defined the CSS classes
strong {
font-weight: bold;
background-color: yellow;
}
textarea {
color: blue;
font-family:"Times New Roman", Times, serif;
// font-size: 1em;
}
How the get the "marked" text part in CSS class 'strong'?
Thanks for your help
Cheers
Marco

