I'm using .html() method to add multiple images to a div.
$('#info').html('<img class="catalog/chair.jgp"/><img class="catalog/chair2.jgp"/>');
But it replaces the existing elements of the div and adds the new images/content.
How do I add the image instead of replacing the elements which already exists?