Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

jquery and facebox plugin not working

Status
Not open for further replies.

jman78

Programmer
Jan 15, 2008
44
US
I wanted to set up this facebox plugin for a friend of mine - but it doesn't seem to work... Can someone check out the page at http://www.christineshinn.com/graphic_design/miscgallery.html and tell me if you can see anything I did wrong?

I have the top row set to use the facebox plugin but it just follows the link.

Thanks much in advance

Jason
 
i get a js error when I visit that page.
Code:
$.facebox.settings is undefined

line 183 of facebox.js

I would try getting rid of the $ in the function argument. i guess by including it you are overriding the jQuery shortcut.
Code:
jQuery(document).ready(function() { 
     $('a[rel*=facebox]').facebox({ 
             loading_image : 'loading.gif', 
             close_image : 'closelabel.gif' 
            }); 
  });
 
Part of what bothers me is that I use the exact same script on another page and it works correctly.

I'm just going to use a different lightbox script - a friend of mine suggested colorbox.

Thanks for the help - I wish it would have worked.

 
for what it is worth, i see that AC_RunActiveContent is not loading. perhaps an absolute url might help? absent of that I cannot see what else might be causing problems for you.
 
Yeah, I'm aware of that. its a path issue.. I don't even think she uses much flash on her website (at least this section). I just didn't fix it yet.

Thanks!

Jason
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top