I have an app which gives normal landline numbers for UK 08 numbers.
Currently this is a web page shown in the app, when the user finds the number they want and click on the green phone icon. I'm using the following JavaScript to force then force a tel: link with the number to bring up the dailer.
document.location.href = 'tel:'+number;//push browser to call number
This method works fine for all newer android 4.0 and above as far as i can see. But when i use my old Orange San Francisco Phone (android 2.3) it doesnt bring the dailer. Instead it just attempts to open a new page with tel:01xxxxxxxx as the URL which in turn displays a web page not available message.
I assume this is because tel: is part of HTML5 which is why it's not working. Is there any alternative that would work on all versions?