Hi. I am designing a site that uses progressive enhancement and has also has a mobile version. I am wanting to use jquery to add a slideshow to the desktop site and want to know the best method for adding a large quantity of HTML. A sample of what I intend to add is:
<!-- Slideshow -->
<div class="scrollable">
<!-- "previous page" action -->
<a class="prev browse left"></a>
<!-- root element for the items -->
<ul>
<li>
<img src="images/slideshow/image1.jpg" alt="image 1" title="image 1" />
</li>
<li>
<img src="images/slideshow/image2.jpg" alt="image 2" title="image 2" />
</li>
<li>
<img src="images/slideshow/image3.jpg" alt="image 3" title="image 3" />
</li>
<li>
<img src="images/slideshow/image4.jpg" alt="image 4" title="image 4" />
</li>
<li>
<img src="images/slideshow/image5.jpg" alt="image 5" title="image 5" />
</li>
</ul>
<!-- "next page" action -->
<a class="next browse right"></a>
Would I be better using the append or HTML method for something like this. I also had another idea that I might create a variable with the HTML inside and use JQuery to add the contents but I have tried and failed on that one (lack of sufficient knowledge!). I would appreciate any advice.