bold() : Display string in bold letters

var my_str="Hello world!";
document.write(my_str.bold());
The output of above string is Hello world!

This method returns string embaded with <B> and </B> tag.

Try this code below, there is an options to display in normal or bold letters by selecting radio buttons.
<html>
<head>
<title>(Type a title for your page here)</title>
<script type="text/javascript">
function makebold(type){
var my_str="Hello world!";
if(type=="bold"){
document.write(my_str.bold());
}else{
document.write(my_str);
}
}
</script>
</head>

<body >
Display in <input type=radio name=bold value=yes onClick="makebold('bold')";>Bold 
<input type=radio name=bold value=yes onClick="makebold('normal')";>Normal 
</body>

</html>
JavaScript String Reference Changing letters by toUpperCase() method
Subscribe to our YouTube Channel here



plus2net.com










We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer