Languages

Menu
Sites
Language
Tizen Web Widget - open url in browser

 

I want to open an url form my Tizen Web widget in the defaut browser.

I tried with this:

<a href="http://www.myurl.com/" target="_blank"></a>

but the link opens in the TIzen Web widget?

How should I do ?

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

Responses

1 Replies
Raghu Kona
Hi, You can use App Control for doing this. Please try using the below code. var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/view", "http://www.tizen.org"); tizen.application.launchAppControl(appControl, null, function() {console.log("launch application control succeed"); }, function(e) {console.log("launch application control failed. reason: " + e.message); }); Regards, Raghu Kona