Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
document.forms['formName'].textBoxName.style.fontWeight = 'bold';
document.getElementById('textBoxId').style.fontWeight = 'bold';
<script>
function postit()
{
var a = new Array(3)
a[0]="test1"
a[1]="test2"
a[2]="test3"
var x=0;
for(x=0; x<3; x++)
{
document.alpha.txt.value = "<b> + a + </b>";
}
</script>
<body>
<form name="alpha">
<textarea cols=20 rows=20 name="txt"></textarea>
</form>
</body>