LEADTOOLS HTML5 Browser Support

Summary

The LEADTOOLS HTML5 / JavaScript toolkit can be used to develop applications for any web browser that supports HTML5.

The LEADTOOLS HTML5 / JavaScript toolkit supports the following browsers

  • Desktop Browsers
    • Internet Explorer 11
    • Edge
    • Safari
    • Chrome
    • Firefox
    • Opera
  • Mobile Browsers
    • Safari
    • Chrome
    • Android
    • Firefox Mobile
    • Opera Mobile

Many LEADTOOLS demo applications will contain the following code near the top of the HTML page to redirect away from the page before loading any LEADTOOLS JavaScript libraries if the browser does not support HTML5:

... 
<script type="text/javascript"> 
   // Check whether HTML5 canvas is supported 
   if (!("HTMLCanvasElement" in window)) { 
      alert("HTML5 Canvas not supported. Redirecting..."); 
      location.href = "https://www.leadtools.com"; 
   } 
</script> 
... 
 
... 
<!-- LEADTOOLS references --> 
<script src="Scripts/Leadtools.js"></script> 
<script src="Scripts/Leadtools.Controls.js"></script> 
... 

Help Version 22.0.2023.1.18
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS HTML5 JavaScript

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.