startcallbutton
The event fires when the user presses the start call button. If you need to override the default start call behavior you can register an event listener for the startcallbutton
event.
Quick Example
document.addEventListener("startcallbutton", onStartCallKeyDown, false); function onStartCallKeyDown() { // Handle the start call button }
Please login to continue.