I have a Webbrowser control on a form (in VB.net) and am navigating to a site
WebBrowser1.Navigate("https://www.offerpop.com")
and it gives me a javascript error, yet if I go to it directly in a browser (IE 10 or otherwise) it loads fine.
It only happens with https
WebBrowser1.Navigate("http://www.offerpop.com")
works fine.
I think it's something to do with the way the relative path and proxy independent way the source is specified
<script type="text/javascript" src="js/lead_tracking.js"></script>
but don't know how to get around it.
Any ideas.