Get started with jquery-browser CDN

MIT licensed

JQuery plugin identifies browser, JS engine version.

Tags:
  • browser
  • jquery
  • desktop
  • detect

Stable version

Copied!

How to start using jquery-browser CDN


<!DOCTYPE html>
<html>
<head>
    <title>Get started with jquery-browser CDN - cdnhub.io</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script src="https://cdn.cdnhub.io/jquery-browser/0.1.0/jquery.browser.min.js"></script>
    <script>
        $(document).ready(function() {
            if ($.browser.msie && $.browser.version.match(/^11\./)) {
                alert("You're using Internet Explorer 11.");
            }
        });
    </script>
</head>
<body>
    <!-- Your HTML content goes here -->
</body>
</html>
Copied!
Copied!

All versions