{{theTime}}

Search This Blog

Total Pageviews

How to catch Java Script error: Can't find variable

<!DOCTYPE html>
<html>
<body>

<p id="JStrycatch"></p>

<script>
try {
jsalert("Java script error handling msg!");
}
catch(error) {
document.getElementById("JStrycatch").innerHTML = error.message;
}
</script>

</body>
</html>

No comments:

Java Sequenced Collection Java Sequenced Collection The Sequenced Collection feature was introduced in Jav...