IF I have a string
<b>This Is In Bold Letters</b>
then how can I include in a <textarea> so that the string appears in BOLD letters?
using javascript & php?
Pls help dear friends
IF I have a string
<b>This Is In Bold Letters</b>
then how can I include in a <textarea> so that the string appears in BOLD letters?
using javascript & php?
Pls help dear friends
You cannot do this with a standard html textarea.
There are ways to do it, though:
The simplest solution to your problem is via CSS. Let me give you an example.
<html>
<head>
<title>Your Solution</title>
<style>
.boldText {
font-weight:bold;
}
</style>
</head>
<body>
<textarea>No CSS</textarea>
<textarea class="boldText">With CSS</textarea>
</body>
</html>