admin管理员组

文章数量:1201361

My website has complete https and its using outer jquery resource which is http.

In IE 8, when I'm redirecting the site it giving me "do you want to view only the webpage content that was delivered securely" warning How to avoid this?

Is there any script available which solve this problem?

Thanks in Advance.

My website has complete https and its using outer jquery resource which is http.

In IE 8, when I'm redirecting the site it giving me "do you want to view only the webpage content that was delivered securely" warning How to avoid this?

Is there any script available which solve this problem?

Thanks in Advance.

Share Improve this question edited Dec 26, 2011 at 15:30 Rajeshkumar Kandhasamy 6,4617 gold badges60 silver badges83 bronze badges asked Dec 26, 2011 at 13:27 Kapil KshirsagarKapil Kshirsagar 2821 gold badge4 silver badges19 bronze badges 4
  • 1 it is a setting on Internet Options - Advance , once u uncheck "Warn if changing between secure and unsecure mode." u wont get the message. – Murtaza Commented Dec 26, 2011 at 13:33
  • 8 Why not just serve your own copy of jQuery over HTTPS? – Bojangles Commented Dec 26, 2011 at 14:02
  • yes. but I m trying it to avoid this warning using some script instead of changes in browser setting? can we do this thing? – Kapil Kshirsagar Commented Dec 26, 2011 at 14:03
  • 4 Feature requests like this are scary. If you can change a security setting for the end-user, so can anyone else, like EVIL PIRATES whose website you accidentally visited. – sq33G Commented Dec 26, 2011 at 14:15
Add a comment  | 

6 Answers 6

Reset to default 7

There seem to be two possible problem areas and your post doesn't make clear which is the issue:

  • You are referencing a jquery script file hosted on another site which is not secure.

As JamWaffles said, you should simply host a copy of the jquery file on your own site so it can be accessed using https. See this answer for details: https://stackoverflow.com/a/1458356/773798

Or ...

  • You are redirecting from a secure to an unsecure site.

I don't think this is what's causing the problem, because it will generate a different message, but for details on how to redirect from a secure to an unsecure page, see this answer: https://stackoverflow.com/a/3784676/773798

it is a setting on Internet Options - Advance , once u uncheck "Warn if changing between secure and unsecure mode." u wont get the message.

Check and Change your Internet options In IE.

How ever u needed change like that.First Use Google it will be better.

http://blogs.msdn.com/b/ieinternals/archive/2009/06/22/9797918.aspx

Hope this may helpful...

We cannot bypass the security alert using any javascript or jquery, because it is concern to security.

Please refer to link below.

Solution to disable the https alert

This may not be useful for you but to your website users will benefit from it:

Disabling "Do you want to view only the webpage content that was delivered securely?" in IE 8

Follow the steps as shown:

Go to Tools -> Internet options

Go to Security tab -> Internet -> Custom level

In the Security settings pop up enable Display mixed content

Repeat these steps for Local intranet and Trusted sites sections

本文标签: