Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having a problem using jQuery Fancybox. it works beautifully locally, but not when it is uploaded to the server. Fancybox itself seems to be working, as when i click an image, it brings up the box, but it does not contain any images. I've checked all of the file locations, and from what i can tell, everything looks to be correct, however i am the furthest thing from a programmer. The page in question is located at:

http://www.houseimprovement.us/project.html

The images used there for the time being are stock photos that I intend to replace once i get everything working.

Thanks for your help!

share|improve this question

2 Answers

Your code is:

<img alt="" id="fancy_img" src="../../AGD/scripts/jquery.fancybox/http://www.houseimprovement.us/photos/project1_full.png">
share|improve this answer

Even so you are "pretty" sure the path isn't right.

Instead of

<img alt="" id="fancy_img" src="../../AGD/scripts/jquery.fancybox/http://www.houseimprovement.us/photos/project1_full.png">

it should be:

<img alt="" id="fancy_img" src="http://www.houseimprovement.us/photos/project1_full.png">
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.