I want to use a variable in a string. I tried to do this many times, but it only gets the variable name.
<head> <script type="text/javascript" src="jquery-1.7.2.js"></script> <script type="text/javascript"> $(function(){ $("a").click(function(){ var id= $(".id").html(); $('.html').html("<div class='new' id=+id+>jitender</div>") }); }); </script> </head> <body> <div class="wrap"> <a href="#">Make Html</a> <div class="html"></div> <div class="id">first</div> </div> </body>
source share