Thank you.
--
http://www.fastmail.fm - IMAP accessible web-mail
--
On Fri, Feb 3, 2012, at 04:22 PM, JFK wrote:
> <a href="javascript:$.fancybox.close()">close</a>
>
> if closing from iframe, then
> <a href="javascript:parent.$.fancybox.close()">close</a>
>
> On Feb 3, 11:58 am, Webzine <techla...@eml.cc> wrote:
> > How to close Fancybox window by clicking on a text link "Close", and
> > place this link to the bottom right corner?
> >
> > Thank you.
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "fancybox" group.
> To post to this group, send email to fanc...@googlegroups.com.
> To unsubscribe from this group, send email to
> fancybox+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/fancybox?hl=en.
>
--
http://www.fastmail.fm - Access your email from home and the web
<a href="javascript:$.fancybox.close()">close</a>
<a href="javascript:;" onclick="$.fancybox.close();"><img
src="/data/closelabel.gif" /></a>
--
On Fri, Feb 3, 2012, at 04:22 PM, JFK wrote:
> --
> You received this message because you are subscribed to the Google Groups
> "fancybox" group.
> To post to this group, send email to fanc...@googlegroups.com.
> To unsubscribe from this group, send email to
> fancybox+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/fancybox?hl=en.
>
--
http://www.fastmail.fm - mmm... Fastmail...
thank you.
--
On Sat, Feb 4, 2012, at 11:50 AM, JFK wrote:
> I guess any would work but you also can try
> <a href="javascript:$.fancybox.close();"><img src="/data/
> closelabel.gif" /></a>
>
> On Feb 4, 5:56 am, Webzine <techla...@eml.cc> wrote:
> > Specifically, I need this close link for Fancybox-1.3.4 which used in
> > Prestashop.
> > How to implement the code samples in Fancybox, which is Prestashop image
> > viewer?
> >
> > <a href="javascript:$.fancybox.close()">close</a>
> > <a href="javascript:;" onclick="$.fancybox.close();"><img
> > src="/data/closelabel.gif" /></a>
> >
> > --
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > On Fri, Feb 3, 2012, at 04:22 PM, JFK wrote:
> > > <a href="javascript:$.fancybox.close()">close</a>
> >
> > > if closing from iframe, then
> > > <a href="javascript:parent.$.fancybox.close()">close</a>
> >
> > > On Feb 3, 11:58 am, Webzine <techla...@eml.cc> wrote:
> > > > How to close Fancybox window by clicking on a text link "Close", and
> > > > place this link to the bottom right corner?
> >
> > > > Thank you.
> >
--
http://www.fastmail.fm - Accessible with your email software
or over the web
dont know how to modify this
function formatTitle(title, currentArray, currentIndex, currentOpts) {
return '<div id="tip7-title"><span><a
href="javascript:$.fancybox.close()">close</a></span>' + (title &&
title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' +
(currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}
or this
$(document).ready(function(){
$("a.myfancytitle").fancybox({
'padding': 0,
'titlePosition': 'over',
'titleFormat' : function() {
return '<span id="fancybox-title-over">'+this.href+'</span>';
}
});
});
> --
> You received this message because you are subscribed to the Google Groups
> "fancybox" group.
> To post to this group, send email to fanc...@googlegroups.com.
> To unsubscribe from this group, send email to
> fancybox+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/fancybox?hl=en.
>
--
http://www.fastmail.fm - Choose from over 50 domains or use your own
function formatTitle(title, currentArray, currentIndex, currentOpts)
{
return '<div id="tip7-title"><span><a
href="javascript:$.fancybox.close()">close</a></span>' + '</div>';
}
$(".tip7").fancybox({
'showCloseButton' : false,
'titlePosition' : 'inside',
'titleFormat' : formatTitle
});
But it not work: not show 'Close' link below the image, and not disable
default ugly CloseButton.
How to make it work? I don't want use additional javascripts scripts as
it bad practice.
--