Languages

Menu
Sites
Language
how to invoke default system web browser?

In my web applicaiton,I need direct user to a web site. And when user complete visitting ,he can back to my web application just like to launch a system service.

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

1 Replies
Srinivasa Rao S
Use application service to launch any url, please find the sample code snippet below Monday, January 28, 2013 10:56 AM var service = new tizen.ApplicationService("http://tizen.org/appsvc/operation/view","http://www.tizen.org"); //Launch a service. tizen.application.launchService( service, "org.tizen.browser", function() { console.log("launch service succeeded"); }, function(e) { console.log("launch service failed. Reason : " + e.name); }, null);