I'm getting the following error in Firebug's console:
m.getOverlay is not defined
I'm using the minified version of jquery.tools.min.js version 1.1.1. I've tried both using the CDN version and a locally saved version and I've received the same effect.
My script is as follows:
and my HTML looks like so:
This is consistently throwing an error for me and I'm uncertain what's going on. Based on what I've read in the docs, this should be working.
You can see a working example of the problem I'm seeing onhttp://dev.advancedaquarist.com/2009/4/fish
Any help would be appreciated. Thanks,
Shane
m.getOverlay is not defined
I'm using the minified version of jquery.tools.min.js version 1.1.1. I've tried both using the CDN version and a locally saved version and I've received the same effect.
My script is as follows:
$("#region-content div a.popup").overlay({
target: '#gallery',
expose: '#f1f1f1'
}).gallery({speed:800});
and my HTML looks like so:
<div id="#region-content">
<div>
<a class="popup" href="foo/bar.jpg">
<img src="foo/bar.jpg" />
</a>
</div>
</div>
This is consistently throwing an error for me and I'm uncertain what's going on. Based on what I've read in the docs, this should be working.
You can see a working example of the problem I'm seeing onhttp://dev.advancedaquarist.com/2009/4/fish
Any help would be appreciated. Thanks,
Shane
