SQL PHP HTML ASP JavaScript articles and free scripts to download
JavaScript Tutorials
Popular Tutorials
Drop down list
Timer function
JavaScript Tutorials
String
Array
Date & Time
Form Validation
Event Handling
Math Functions
JavaScript Forum
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.

 
 

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());


Now the string will be displayed in a bold letters.

Try this code , 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>


Further readings
Lower case text to Uppercase text
Uppercase letter to Lower case
Bold text letters using JavaScript
String Length
Character at a location using charat function
Indexof function
String Reverse function
search():Searching String inside another string
slice():Collecting part of a string using slice function
Domain and userid part of email address
Text box onBlur click event changing text case
 
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.

Scripts
PHP
JavaScript