Hi I want to inject an extra data to facybox title function deneme is the variable that I want to inject with no success.
<a rel="example_group" title="Title comes here" data-deneme="<?php echo $galleryitem['idphotos']; ?>">sdasd</a>
$("a[rel=example_group]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
var deneme=$(this).data('deneme');
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span><span stye="color:#FFF; cursor:pointer;" onclick="javascript:popUpWindow("<?php echo base_url();?>selectproductoptions/'+ deneme +'.html",10,10,660,550);">+ add to cart</span>';
}
});
deneme always comes undefined
I figured out how to do that instead of trying to get deneme separately I have put to deneme just after the href like urlofimage.jpg?DenemeComesHere
and to grab deneme I have used jquerys split function like so
var deneme = currentOpts.href.split('?');
Thank you...