SyntaxFix
Write A Post
Hire A Developer
Questions
If you'd like to know what is the numeric version of FireFox you can use the following snippet:
var match = window.navigator.userAgent.match(/Firefox\/([0-9]+)\./); var ver = match ? parseInt(match[1]) : 0;