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
Note: Microsoft Internet Explorer browsers versions 8 and earlier have a faulty support ECMA JavaScript Object.defineProperty method. Browsing to an HTML page that includes LEADTOOLS libraries references in the head section will result in an error. The workaround is to insert the following JavaScript script into the head section prior to any LEADTOOLS reference:
<!-- Workaround for Internet Explorer 8 and earlier. Must be added before any LEADTOOLS references -->
<script type="text/javascript">
// check whether HTML5 canvas is supported
if (!("HTMLCanvasElement" in window)) {
alert('HTML 5 Canvas not supported, redirecting ...');
location.href = "https://www.leadtools.com";
}
</script>
<!-- LEADTOOLS references -->
<script type="text/javascript" src="Scripts/Leadtools.js"></script>
<script type="text/javascript" src="Scripts/Leadtools.Controls.js"></script>