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
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>
...