SQL PHP HTML ASP JavaScript articles and free scripts to download
 

Displaying in Bold letters using JavaScript

Using JavaScript we can make a string bold by using bold() function. Here is an example.

var my_str="Hello world!";
document.write(my_str.bold());

The output of above string is Hello world!

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>

Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum



Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked

Join Our Email List
Email:  
For Email Newsletters you can trust
String Functions
HTML . MySQL. PHP. JavaScript. ASP. Photoshop. Articles. FORUM Contact us

©2000-2013 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer