I want to use a variable in a string. I have tried to do it many times, but it is only getting 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>
Concatenating can be done with +
as follows.
$('.html').html("<div class='new' id='" + id + "'>jitender</div>");
Reference:
You can also use template literals:
$('.html').html(`<div class='new' id=${id}>jitender</div>`)
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With