I would like to launch a Fancybox (e.g. Fancybox's version of a modal or light box) on page load. I could bind it to a hidden anchor tag and fire the click event of that anchor tag via JavaScript, but I would rather just launch the Fancybox directly and avoid the extra anchor tag.
feedback
|
|
Fancybox currently does not directly support a way to automatically launch. The work around I was able to get working is creating a hidden anchor tag and triggering it's onclick event. Make sure your call to trigger the onclick event is included after the jquery and fancybox js files are included. The code I used is as follows: This sample script is embedded directly in the html, but it could also be included in a js file.
| |||||||||||||
feedback
|
|
I got this to work by calling this function in document ready:
| |||||||
feedback
|
|
why isn't this one of the answers yet?:
now just trigger your link!! got this from the Fancybox homepage | |||
|
feedback
|
|
Or use this in the JS file after your fancybox is set up:
I believe Fancybox 1.2.1 will use default options otherwise from my testing when I needed to do this. | ||||
|
feedback
|
|
maybe you can use jqmodal,it's lightweight and easy to use. you can show the modal box by calling
| |||||
feedback
|
|
I actually managed to trigger a fancyBox link only from an external JS file using the "live" event: First, add the live click event on your future dynamic anchor:
Then, append the anchor to the body:
Then trigger the fancyBox by "clicking" the anchor:
The fancyBox link is now "almost" ready. Why "almost" ? Because it looks like you need to add some delay before trigger the second click, otherwise the script is not ready. It's a quick and dirty delay using some animation on our anchor but it works well:
Here you go, your fancyBox should appears onload! HTH | |||
|
feedback
|
|
Maybe this will help... this was used in the full size jQuery calendar click event (http://arshaw.com/fullcalendar/)... but it can be used more generally to deal with fancybox being launched by jQuery.
| |||
|
feedback
|
|
For my case, the following can work successfully. When the page is loaded, the lightbox is pop-up immediately. JQuery: 1.4.2 Fancybox: 1.3.1
| |||
|
feedback
|
|
Alex's answer is great. but It is importanting to note that that calls the default fancybox style. If you have your own custom rules, you should just call .trigger click on that specific anchor
| |||
|
feedback
|
|
Thanks for the code guys. Im now using this for popups of images in my signature on a forum, works well. In my case I have the window just close on fancybox exit but you could also have it redirected to the home page or somewhere else. I just put the link in my forum signature to the page, in my case im just using static htm pages for now in their own folders, eg. www.mysite.com/myimage/default.htm (dont need the /default.htm in the actual link). BTW the images are not spam or ads they are samples specific to the forum.
| ||||
|
feedback
|
|
The best way I've found is:
| |||||
feedback
|
|
You can also use the native JavaScript function
| |||
|
feedback
|
protected by Community♦ May 12 '11 at 13:48
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.