|
| JAVASCRIPT small() METHOD
In javascript, the small() method displays the text/string in a small size ie. as if it were in the <small> element.
The general format is:
string.small();
Example:
<script type="text/javascript">
var string="Bugs Bunny Here";
document.write(string.small());
</script>
The above will output:
See Also:
|
|