Side navigation
#3724 closed bug (duplicate)
Opened December 17, 2008 10:52PM UTC
Closed January 11, 2009 05:36AM UTC
Last modified March 14, 2012 10:49PM UTC
Clone on SSL with Anchor Tag
Reported by: | cblaze22 | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | ajax | Version: | 1.2.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I recently ran into a problem with the clone function and SSL with a anchor tag. The problem was IE kept showing that unsecure items were on a page that contained htts:// in the protocol. Searching the html there was nothing. I narrowed the problem down to cloning a anchor . I read that some javascript may cause this issue with SSL enabled sites. My fix was to create the anchor tag by scratch and use that instead.
Attachments (0)
Change History (5)
Changed December 17, 2008 10:53PM UTC by comment:1
Changed December 18, 2008 10:04PM UTC by comment:2
need: | Review → Test Case |
---|
Can you provide a simple test case? This may be a variation of #1734 but it's hard to tell without a test case.
Changed January 03, 2009 01:05AM UTC by comment:3
component: | unfilled → ajax |
---|---|
owner: | flesler |
Changed January 05, 2009 04:23PM UTC by comment:4
Go to in IE7
https://nlets.staging.terralever.com/supportingServices.aspx
It occurs when it hits this line below in common/script/utility.js
var pageObj = page.clone();
and I fixed it with these lines.
var pageObj = $(document.createElement('a'));
pageObj.attr('href', $(page).attr('href')).addClass('on').html($(page).html());
https://