is it possible to underline a portion of text in control.
I did like this in jquery, but no underline is appearing. any sample code examples?
<textarea rows = "3" cols = "50" id = "TestName" ></textarea>
Jquery
var dvHTML = ''
dvHTML = '<span style=text-decoration: underline;>' + "Hello world" + '</span>';
$("#TestName").html(dvHTML);
Output i'm getting as only Hello world, tags are not getting recognized