Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to create a strikethrough text using JavaScript?
To create a strikethrough text with JavaScript, use the strike() method. This method causes a string to be displayed as struck-out text as if it were in a <strike> tag.
Example
You can try to run the following code to create a strikethrough text −
<html>
<head>
<title>JavaScript String strike() Method</title>
</head>
<body>
<script>
var str = new String("Demo Text");
document.write(str.strike());
alert(str.strike());
</script>
</body>
</html> Advertisements
