Languages

Menu
Sites
Language
How to call some page

 

Hi,  

How to call some page without jquery mobile, only with tizen-fw and jquery.

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

Responses

1 Replies
Raghavendra Reddy Shiva
Is that you want to launch some application or page from the current application ? If yes, below is how you can do it using Tizen application API. The below sample code, launches the "https://www.tizen.org/" using the browser application. var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/view","https://www.tizen.org/", null); tizen.application.launchAppControl(appControl,null, function(){console.log("launch appControl succeeded");}, function(e){console.log("launch appControl failed. Reason: " + e.name);}, null);