Geekpedia Programming Tutorials






Strip HTML using JavaScript

A simple function that uses regular expressions to strip the HTML tags out of strings.

On Saturday, September 29th 2007 at 10:23 PM
By Andrew Pociu (View Profile)
****-   (Rated 3.2 with 6 votes)
Contextual Ads
More JavaScript Resources
Advertisement
  1. <html>
  2. <head>
  3. <title>Strip HTML</title>
  4. <script type="text/javascript">
  5. String.prototype.stripHTML = function()
  6. {
  7.         // What a tag looks like
  8.         var matchTag = /<(?:.|\s)*?>/g;
  9.         // Replace the tag
  10.         return this.replace(matchTag, "");
  11. };
  12.  
  13. function ShowStrippedText()
  14. {
  15.         var sourceInput = document.getElementById("textSource");
  16.         var destInput = document.getElementById("textDestination");
  17.         // Set the destination text area to the value of the newly stripped HTML
  18.         destInput.value = sourceInput.value.stripHTML();
  19. }
  20. </script>
  21. </head>
  22. <body>
  23. <textarea id="textSource" rows="10" cols="80"><i>Some Sample <b>HTML</b> in here</i></textarea><br />
  24. <input type="button" value="Strip HTML" onclick="ShowStrippedText()" /><br />
  25. <textarea id="textDestination" rows="10" cols="80"></textarea>
  26. </body>
  27. </html>
Digg Digg It!     Del.icio.us Del.icio.us     Reddit Reddit     StumbleUpon StumbleIt     Newsvine Newsvine     Furl Furl     BlinkList BlinkList

Rate Rate this code snippet
Comment Current Comments
by michael on Friday, August 1st 2008 at 12:01 PM

How can I use this after the form is submitted to print out plain text in email?

by Amol on Monday, November 17th 2008 at 06:26 AM

this is really nice code


Comment Comment on this tutorial
Name: Email:
Message:
Comment Related Source Code
There is no related code.

Comment Related Tutorials
There are no related tutorials.

Jobs JavaScript Job Search
My skills include:

Enter a City:

Select a State:


Advanced Search >>
Latest Tech Bargains

Advertisement

Free Magazine Subscriptions

Today's Pictures

Today's Video

Other Resources

Latest Download

Latest Icons