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