I want to go to windows store when button clicked . It should navigate to search page of windows store with search query.
Here is equivalent c# code..
private async void gotoStore(string query)
{
var storeURI = new Uri("ms-windows-store:Search?query="+query+"");
await Windows.System.Launcher.LaunchUriAsync(storeURI);
}
I need to do it in Javascript