HTML DOM Strong Object
Strong object
The Strong object represents the HTML <strong> element.
Access the Strong object
You can use getElementById() to access the <strong> element:
var x = document.getElementById("myStrong");
Create a Strong object
You can use the document.createElement() method to create a <strong> element:
var x = document.createElement("STRONG");
Standard Properties and Events
Strong Object Supports StandardsPropertiesAndEvents.
Related Pages
HTML Tutorial:HTML Text Formatting Elements
HTML Reference Manual:HTML <strong> Tag
JavaScript Reference Manual:HTML DOM Bold Object