i++;
$("#test").html("<iframe id='i' src='arr[0]'></iframe>");
I want to assign the value of the array to the iframe source as shown here. This doesn't work however. How is this possible? Thanks
I want to assign the value of the array to the iframe source as shown here. This doesn't work however. How is this possible? Thanks |
||||
|
|
|||
|
|
|
Why your code doesn't work as expected:
generates the html output:
Your variables are in fact outputted as literals, since you're not using any escaping/concatenation (see this article for JS string 101). What you can do to make it work: While the other answers are correct, consistently using single quotes for strings makes HTML concatenation way more fun (as attribute values should usually be in double quotes):
What you can do to make it work even more hassle-free for you: It might be overkill if you need to concatenate just once. In the long run though, this approach by @Zippoxer makes your life much easier when you have to insert values into strings:
Usage in your case:
|
|||||||||
|
|
try this...
What you are doing with |
|||
|
|
|
You need to use concatenation:
Edited to match updated question |
||||
|
|