I am trying to add some additional html to a div with id slideshow using jQuery. My code:
$(\"#slideshow\").append(\"
your not escaping your quotes best way to fix is to put the append in single quotes
$("#slideshow").append('Previous SlideNext Slide');