my code
$('a[rel*=sidufbbox]').live('click',function() { uidialog({ url : $(this).attr('href'), data : null, type : 'get', title :$(this).attr('title') },false,{modal: true,show: 'fade', hide: 'fade', title: $(this).attr('title'), close:function(){ }, position:['middle',150], width: 750}); return false; }); my link
<?php echo $this->html->link('privacy policy',array('controller'=>'pages','action'=>'display','div'=>false,'help','admin'=>false),array("rel"=>"sidufbbox","title"=>"privacy policy"));?> initially working when page url http, have made page url https ? may causing issue, plz me fix issue ??
$('a[rel*="sidufbbox"]') .on('click',function() { uidialog({ url : $(this).attr('href'), data : null, type : 'get', title : $(this).attr('title') }, false, { modal: true, show: 'fade', hide: 'fade', title: $(this).attr('title'), close:function(){ }, position:['middle',150], width: 750}); return false; }); using f12 key, should able put browser web dev mode , should give details happening. there several items within uidialog options invalid me. first of all, though, change .live .on.
regarding 302 error :
resolving 302 errors - general
the 302 response web server should include alternative url redirection should occur. if does, web browser retry alternative url. never see 302 error in web browser, unless perhaps have corrupt redirection chain e.g. url redirects url b in turn redirects url a. if client not web browser, should behave in same way web browser i.e. retry alternative url. if web server not return alternative url 302 response, either web server sofware defective or webmaster has not set url redirection correctly.
Comments
Post a Comment