Accessing settings menu via browser

Ronny1971

New Member
Is it possible to access device settings from the browser on an mobile device using HTML5 and JavaScript?I am trying to recreate something like in Android, where by you can launch an intent to show a specific settings page, using code similar to below.\[code\]Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);startActivity(intent);\[/code\]I have been doing some searching and havn't been able to find anything. This to me suggests it isn't possible.
 
Top