jQuery HTML Element How to - Click a paragraph to convert it from html to text








Question

We would like to know how to click a paragraph to convert it from html to text.

Answer


<!--from   w w  w. j  a  va 2s.c o m-->
<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("p").click(function () {
              var htmlStr = $(this).html();
              console.log(htmlStr);
            });
        });
    </script>
    <style>
      .selected { color:red; }
      .highlight { background:yellow; }
    </style>    
  </head>
  <body>
      <p class="selected highlight">Hello</p>
  </body>
</html>

The code above is rendered as follows: