I have this jQuery code
$("#selector").html('<a href=url>text</a>');
where url
and text
are JavaScript variables. How would I evaluate them inside quotes?
I have this jQuery code
$("#selector").html('<a href=url>text</a>');
where url
and text
are JavaScript variables. How would I evaluate them inside quotes?
- I created an open source project for interpolation you can try. github./zsong/Kiwi Thank you. – zs2020 Commented Feb 15, 2013 at 18:27
3 Answers
Reset to default 11You just concatenate the strings together with +
:
$('#selector').html('<a href='+url+'>'+text+'</a>');
While @kingjiv's answer is absolutely right, if you'll be doing a lot of templating with jQuery it might be worth checking out the tmpl* plugin to help keep things organized.
*note: This plugin never made it past beta, and is no longer being maintained, the link above is for archival purposes only.
For anyone landing here post 2015: use ES6 template literals. These are string literals, enclosed in backticks, which allow embedded expressions.
$('#selector').html(`<a href='${url}'>${text}</a>`);