Is it possible to launch applications by name with HTML/HTML5/Javascript?
For example, may we have some button on web page, which runs smartphone camera, allows user to take picture and then send it to site?
First question is if it is possible to do with pure web page.
Second question is if it is possible to do this with accompanying application? For example, may be it is possible to write mobile-platform-dependent protocol hanler for custom strings, like "launch", which will allow to have hyperlinks like
<a href="launch://com.android.camera">Open camera</a>
UPDATE
I found this https://developer.chrome.com/multidevice/android/intents
This article says it IS possible to launch application on android by their intent names. This is what I was looking for.
I am interested, if it is possible to do the same on iOS?