php - External links from fancybox is not working -
php - External links from fancybox is not working -
php
$profile_url = $vars['url'].'pg/profile/'.$user->username;
html
<div style='float:left;margin-top:8px;margin-right:-3px;'><a href='#edit_profile' class='apply_alert' id='{$job_id}'><span class='apply_button'></span></a></div> <div id="edit_profile"> <div style="background:#fff;height:100%;border:1px solid #1583d0;"> <div style="padding:20px 10px 10px;"> <a style="text-decoration:none;" href="<?php echo $profile_url?>" class="profile_btn button-blue">edit profile</a> </div> </div> </div>
script
$(".apply_alert").fancybox({ 'titleposition' : 'inside', 'transitionin' : 'none', 'transitionout' : 'none', 'framewidth' : 420, // set width 'frameheight' : 175 });
i have fancybox. within adding link button.
the problem facing url referring in anchor tag in fancybox not working. when click button popup getting fading down. how solve this.
okay found solution set hideoncontentclick
false
in fancybox script...here work...
php jquery html fancybox
Comments
Post a Comment