Set div text - Javascript jQuery

Javascript examples for jQuery:Text

Description

Set div text

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){//w  w  w. j  ava2 s .c  o m
str="<f1>";
$("div").text(str);
    });

      </script> 
   </head> 
   <body> 
      <div id="test"></div>  
   </body>
</html>

Related Tutorials