mixed content - YUI library on HTTPS -


my webapp uses yui library as recommended in doc:

<script src="http://yui.yahooapis.com/3.18.1/build/yui/yui-min.js"></script> 

problem: modern browsers not load anymore, citing mixed https/http concerns.

replacing http https in url above does not work (they have certificate problem).

copying yui-min.js https domain not work either, because javascript seems contain own url within minified source code, instance here:

[...] var p,b,q="3.4.1",h=".",n="http://yui.yahooapis.com/",t= [...] 

i tried modifying variable above directly in minified code, broke things yui reason tries load https://myserver/combo, not exist.

question: right way switch yui library https?

http://blog.andrewbruce.net/why-is-serving-yui3-over-https-so-hard describes problem "one of frustrating development problems i’ve come across in career", , describe how 3 techniques failed, , how resorted perform network sniffing , identify traffic each browser wanted support. avoid can not test on browsers.

a recent glimmer of hope appearance of https://yui-s.yahooapis.com/combo?2.6.0/build/animation/animation-min.js might lead usable https/yui without having go through trouble.

similar old question, sole answer based on yui configurator, has been deprecated , unavailable.


Comments