OK, I just noticed you are calling the manual method so there is the list of things you need to fix in your script:
- use lowercase in your html tags ... <SCRIPT TYPE= ...> should be <script type= ....>
- don't need a trigger click
- if you use jQuery(document).ready() then don't use "$" inside your methods but "jQuery" instead.
- Boolean (true/false) as well as integers go without quotes so 'width' : '600', should be 'width' : 600 for instance
- closeBtn is not a valid option for v1.3.4 but v2.x
- border is not a fancybox option for any version
- if you are opening external pages 'href': 'blank.html', as in your example, then you need to specify 'type' : 'iframe',
...so your full code should look like (I commented out unnecessary lines) :
<script type="text/javascript">
jQuery(document).ready(function() {
// $("#fancybox-overlay").unbind(); // No idea what you use this for
setTimeout(function() {
jQuery("#fancybox-overlay").unbind();
jQuery.fancybox({
'autoDimensions': false,
// 'closeBtn': false, // not valid for v1.3.4
'width': 600,
'height': 450,