add html to div with jQuery
Posted
by mtwallet
on Stack Overflow
See other posts from Stack Overflow
or by mtwallet
Published on 2010-05-05T14:28:25Z
Indexed on
2010/05/05
14:48 UTC
Read the original article
Hit count: 223
Hi. I am trying to add some additional html to a div with id slideshow using jQuery. My code:
$("#slideshow").append("<a id="prev" title="Previous Slide">Previous Slide</a><a id="next" title="Next Slide">Next Slide</a>");
This isn't working, can anyone tell me what I am doing wrong?
© Stack Overflow or respective owner