I am having a jsp page. Inside which i import a jspf file. In the jspf file, i have used tab-libs similar to this
<a href="javascript:moveToPage('<c:out value="${requestScope.PREVIOUS_LINK}"/>')">
<img align="absmiddle" src="images/<c:out value='${selectedTheme}'/>/previous.gif" width="23" height="14" alt="Previous" title="<fmt:message key="jsp.imagetitle.Previous"/>" border="0"></a>
The jsp file looks like
<div id="someId">
<%@ include file='jspf/myNewPage.jspf'%>
</div>
This jsp page is called to another jsp page using ajax and filled in a div using
$('#divid').html(response.responseText);
When i get the output on the screen, it shows some html tags printed and the image in img tag is not printed.