Hi
What do I have to do if I would like to open an overlay from a simple link ?
here is what I have sofar :
Thanks
What do I have to do if I would like to open an overlay from a simple link ?
here is what I have sofar :
$("#contactpanel").overlay({
// custom top position
top: 178,
// some mask tweaks suitable for facebox-looking dialogs
mask: {
// you might also consider a "transparent" color for the mask
color: '#fff',
// load mask a little faster
loadSpeed: 200,
// very transparent
opacity: 0.5
},
// disable this for modal dialog-type of overlays
closeOnClick: false,
// load it immediately after the construction
load: true
});
Now I want to set load to false, and have a link open the overlay.Thanks
