Thread: jQuery Mega Menu Https Issue
View Single Post
Old 11-06-2010, 09:18 AM   PM User | #2
SB65
Senior Coder

 
Join Date: Feb 2009
Location: West Yorkshire
Posts: 2,817
Thanks: 9
Thanked 681 Times in 675 Posts
SB65 will become famous soon enoughSB65 will become famous soon enough
The difference is coming from this function in your megamenu plugin:

Code:
addshim:function($){
	$(document.body).append('<IFRAME id="outlineiframeshim" src="'+(location.protocol=="https:"? 'blank.htm' : 'about:blank')+'" style="display:none; left:0; top:0; z-index:999; position:absolute; filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)" frameBorder="0" scrolling="no"></IFRAME>')
	this.$shimobj=$("#outlineiframeshim")
},
which, in the case of https, is appending an iframe onto blank.htm. This doesn't exist, so you get the 404.
SB65 is offline   Reply With Quote
Users who have thanked SB65 for this post:
Ascension (11-06-2010)