fancybox

Fancybox - getting html from element based on id?

I have the following snippet; $("a.lightbox_image").each(function () { $(this).fancybox({ 'transitionIn': 'elastic', 'transitionOut': 'elastic', 'speedIn': 600, 'speedOut': 200, 'content': $('#lightbox_image_content_'+this.id.replace('lightbox_image_','')).html() ...

Fancybox height help?

I am using fancybox for loading a Huge form "1300px" height ( i know it is not something good but the client wants it like this) the problem that it doesn`t cover the whole height i tried autoDimensions $.fancybox.resize with no luck although other parts that uses fancybox is working without a problem so any tips will be great. also ...

How to prevent jQuery FancyBox from closing immediately after submit?

Hi! I'm loading an inline registration form in a FancyBox from jQuery. However after submitting the form, the box immediately closes while there is some feedback that I want to show the user in the FancyBox itself. This feedback is generated on the server side and is printed in the FancyBox. How can I make the box only closing when the...

Adding stylesheet in head tag of a fancybox

Hello! I have a stylesheet with some styles that I want to apply inside a fancybox, too. But I can't find a way to add the <link> attribute in the <head> block of the iframe. Any ideas? Thanks! ...

Fancybox "close" hangs/delays in IE7/8

I'm having an issue with IE7/8 only on a development site: when closing the Fancybox, there is a major delay, sometimes about ten seconds or so, sometimes much longer (like a minute). Some things that might be relevant: • Using fancybox 1.3.1 • Works perfectly on all other browsers (FF, Safari, Opera, Chrome) • The loaded iframe conta...

Fancybox not showing over flowplayer IE issue?

I'm having a really strange issue, I have a flowplayer video, and next to that is an image that when clicked shows in a fancybox, in webkit, mozilla it works fine, but IE decides to put the video in front of the slide. I thought this might be related to the z-index, but everything seems fine there. Fancybox gives the loading image a z-i...

Fancy box and youtube video problems

I have some fancy box photos and a youtube video, but when the fancy box picture opens the youtube video sits in front of it? Any ideas? Here is a snippet of my code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt...

How place a link below a picture that is displayed using fancybox (jquery)?

In the first picture of my website (the two persons), shows an URL address when you click on it. I used the "title" thing. Is there a simple way of doing the same but placing a link instead? code: <div class="pusher"> <h3><?php echo l('showcase1_h3'); ?></h3> <p><?php echo l('showcase1_p'); ?></p> <div class="pi...

Make fancybox jQuery plugin with results from submitting a form on same page

I am trying to take form results that are generated from a PHP call and populate them into a div that will then appear in a light box upon click of the submit button. So far I have successfully setup the form and am populating the results on the same page into a hidden div. I can make this div appear no problem in a light box by settin...

fancybox encoding issue

i am using fancybox.net for my light boxes. it works great with images. but when i use iframe option i am having problems with encoding. i use hebrew and english and russian on my website. when i use UTF-8 on the iframe page i get squares instead of hebrew letters. when i change to iso-8859-8 i have hebrew but inverted, and russian goe...

Passing javascript form variables into jQuery function not working

I am trying to pass some JavaScript variables that I have assigned to form variables into a query string used by a jQuery plug in called fancybox. If I hard code in the string that I want lightbox works great, however I need it to pass some form values in there to make it work as desire. <script type="text/javascript"> $(document)....

Fancybox Question

Is there a way to open two pictures in one frame? ...

jQuery Fancy - popup window doesn't fully expand

I am using jQuery Fancybox to display a number of Flash videos on a site and I am having trouble with the window not opening fully on the first click in Firefox. It works fine in other browsers. Here is the jQuery: <script type="text/javascript"> $(document).ready(function() { $("a.videoLink").fancybox({ 'titleS...

Fancybox Auto Close, but remain user control

Hi, i've searched through the forum yet i can't find the solution. i'm refering to this thread to do the auto close function: http://groups.google.com/group/fancybox/browse_thread/thread/d09438b7... I did follow JFK's solution which works just right: 'onComplete': function() { $("#fancybox-wrap, #fancybox-overlay").delay(3000).f...

jQuery fancybox - target specific div #id in iframe

Is it possible to use fancybox to load a specifc div #id from another page rather than loading the whole page via an iframe? For example I can use $('#link-whole').fancybox({ 'width' : '80%', 'height' : '80%', 'type' : 'iframe', }); with...

Fancybox iframe says that my YouTube href is undefined

Here is my HTML: <a class="video iframe" href="http://www.youtube.com/watch?v=Psk2Pq03rv0&amp;#38;fs=1"&gt;Arbitrary text</a> Here is the Fancybox javascript: <script type='text/javascript'> $(document).ready(function(){ $("a.video").fancybox({ 'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 'type' :...

Display fancybox loading icon

When I use fancybox for iframe, the loading icon isn't displayed while fancybox is loaded... How can I fix this problem? Thanks in advance. ...

Fancy Box Within RadAjaxManager and RadSplitter

Spent 10 hours on this so far. Have searched every where and tried everything. I have treeview left hand side of splitter and thumbnail view right hand. I have an AjaxManager controlling the update of the thumbnail view as you click treeview. In Thumbnail View I have my FancyBox. When initially opening webpage and clicking FancyBox, it...

Problem with FancyBox

I installed a pop-up slideshow gallery using FancyBox /example), which lets you add a caption under the pop-up image, using the title tag. Unfortunately, when you hover over the thumbnail, the title tag shows up with all the styled code in it, which looks pretty bad. Is there a way to disable the title hover, without disabling the actu...

fancybox, return value from clicked element

Hi guys, I have a quick question, (I hope it is quick one). I have fancybox plugin (jquery) -- http://fancybox.net/ $(".Sets a").fancybox({ 'onComplete' : function(){ $('#fancybox-inner').prepend('<a href="#">'+ **clicked element rel** +'</a>')} }); ...