can ASP be used inside jQuery?
Hi all
I was trying to add a simple link to some products on my site, the link was going to the products main page.
the link uses the .asp code to go to the product page...
below is the jquery i tried to use:
Code:
;$(function(){
$('div.prodprice').after('<p class="no_space" align="center">
<a class="ectlink" href="../proddetail.asp?prod=<%=rs("pID")%>">
<img src="../images/imgconfopts.gif" alt="View Details" width="115px" border="0" />
</a></p>')
});
it doesnt work, the link seems to break at the first " inside does anyone know a way around this?
thanks
James