Last Updated: February 25, 2016
·
836
· sjoooors

Get iOS version

Hi people,

First of all I'm new to this site and I have to say that's really impressive!

So here is my first piece of (JavaScript) code to receive the current iOS version of an iDevice:

var nav = navigator.userAgent.split(' ');
alert(nav[4].replace('_','.'));

Best regards,

Sjors