How to run url in IE10 from Windows 8 WInJS app?

This may be a stupid question, but I could not find the answer. I want to run a specific URL with IE10 from my Windows 8 javascript application, that is, my application will be paused and IE10 will start. How to do this using javascript?

Thanks Themos

+5
source share
1 answer
var url = new Windows.Foundation.Uri("http://www.google.com")
Windows.System.Launcher.launchUriAsync(url);
+14
source

All Articles