HTML DOM Small Object







googletag.cmd.push(function() { googletag.display('div-gpt-ad-1422003450156-2'); });



HTML DOM Small Object



❮ Previous
Next ❯



Small Object



The Small object represents an HTML <small> element.



Access a Small Object


You can access a <small> element by using getElementById():



Example



var x = document.getElementById("mySmall");

Try it Yourself »

Create a Small Object


You can create a <small> element by using the document.createElement() method:



Example



var x = document.createElement("SMALL");

Try it Yourself »

Standard Properties and Events


The Small object supports the standard properties and events.




Related Pages


HTML tutorial: HTML Text Formatting Elements


HTML reference: HTML <small> tag




❮ Previous
Next ❯

Popular posts from this blog

Greedy Best First Search implementation in Rust

Function to Return a JSON Like Objects Using VBA Collections and Arrays

C++11 CLH Lock Implementation