I have following code:
$(document).ready(function() {
$(".image").fancybox({
helpers: {
title : {
type : 'float'
}
}
});
});
</script>
</head>
<body>
<a class="image" href="http://farm4.staticflickr.com/3712/9032543579_1217e6566b_m.jpg" title="Singapore from the air (Andrew Tan 2011)">
<img src="http://farm4.staticflickr.com/3712/9032543579_1217e6566b_m.jpg" alt="" />
it works as expected when click on image:
if rewrite body like this:
<a class="image" href="http://localhost:9091/member/createCompany/getOriginalImage/1" title="Singapore from the air (Andrew Tan 2011)">
<img src="http://farm4.staticflickr.com/3712/9032543579_1217e6566b_m.jpg" alt="" />
I see following result when I click on picture:
I don't understand what the problem. please help.