$("#target4").html(button id=“target4”);
Why is this telling me I’m missing a ) after argument list. Where would I put another )
?
1 Like
Here is the answer:
$("#target4").html("#target4");
remember about < em > < / em > in the second part
9 Likes
$("#target4").html("#target4");
dont forget to add tags
1 Like
if you don’t mind i asking where shall we put those tags can anyone show us the proper code
2 Likes
GOT THE RIGHT CODE!!!
$("#target4").html("#target4");
1 Like
hp8784
8
$("#target4").html("<em>#target4</em>");
14 Likes
Here is the correct answer
16 Likes
Rojas
10
Thank you for the answer!
If you can, can you please further explain the < em > tags and how I would use them later down the road? Thank you.
1 Like
remove all spaces inside the function .html() and it will work
Here is the answer! $("#target4").html("#target4");