ssl - google translate not showing up when https is used in url -
for reason when go url https://www.improvementskills.org/index.cfm google translate not show up, when go http://www.improvementskills.org/index.cfm works fine. know issue ssl , having https. know problem , how fix it. thanks!
you loading google's javascript http url, when page served https. browser rejects that, because it's insecure include non-https content in https page.
you need this:
<script type="text/javascript" src="//translate.google.com/... rather specifying url http://translate.google.com/... starting url @ double-slash, browser use whichever of http or https page using.
Comments
Post a Comment