I have a problem with an embedded javascript link, the site is not mine and the java script is the website's own. I've read some questions on this website and they didn't solve my problem because the javascript is not a written text, it's an embedded link like some other sites'. The internet explorer runs well with all sites.
Has someone a good idea with source code, please help?
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.DocumentText = @"<html><head>
<script type='text/javascript'>
function doIt() {
alert('hello again');
return 'i did it!';
}
</script>
</head><body>hello!</body></html>";
webBrowser1.Navigate("https://pro.beatport.com/");
// A script error appears, but I want to run it.:
// https://pro.beatport.com/static/1c1446445b81130df058c152e3dff01e30e2903d/js/main.js
}