Javascript examples for jQuery Method and Property:jQuery Method Example
Adding quotes in javascript
<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>