How to add href “close” link to Fancybox modal window? I want close Fancybox by click on href link inside modal window, in the same way as this done in Thickbox.
I dont want use separate javascript for this task, but instead want to modify Fancybox-1.3.4.js itself in order to get this functionality.
From Fancybox API, the following code will do this:
<a href="javascript:$.fancybox.close()">close</a>
Need help and tips how to achieve this.
<a href="javascript:;" onclick="$.fancybox.close();">Close</a>From fancybox.net look at the Inline – modal window example which has a Close text link