Adding quotes in javascript - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:jQuery Method Example

Description

Adding quotes in javascript

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-2.1.0.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*from  w ww. j  a  v a 2s  .  c o  m*/
var one = 600;
var two = "my";
var three = one + two;
three = "\"" + three + "\"";
$('#result').html(three);
    });

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

Related Tutorials