|
| JAVASCRIPT fixed() METHOD
In javascript, the fixed() method displays text as if it were in a <tt> element ie. in teletext (monospace) format.
The general format is:
string.fixed();
Example:
<script type="text/javascript">
var text="Good Morning John";
document.write(text.fixed());
</script>
The above will output:
See Also:
|
|