Can you explain why this is not working? I am getting a syntax error!
HTML :
<a id="Navy">Navy</a>
<div id="replace1">
<a href="Photos of T shirts/SITBRBV1_big.png" id="zoom01" class="cloud-zoom">
<img id="maneP" src="Photos of T shirts/SITBRBV1.png" alt="" align="top"/>
</a>
</div>
jQuery :
$(function () {
$('#Navy').click(function () {
$('#replace1').html(
'<a href="Photos of T shirts/SITBRNV1_big.png" id="zoom01" class="maneA cloud-zoom" rel="adjustX:20, adjustY:-3, tint:'#FFFFFF ', softFocus:1, smoothMove:5, tintOpacity:0.8"><img id="maneP" src="Photos of T shirts/SITBRNV1.png" alt="" align="top"/></a>'
);
});
});