Home arrow JavaScript arrow JavaScript Errors
JAVASCRIPT

JavaScript Errors


When last we spoke, we discussed the various Events in JavaScript. In this tutorial we will go over some of the errors that can occur and how to deal with them. I know, I know: how can any of your programs possibly fail when you have been taught by the JavaScript Ninja? Well, you can blame that on the good folks that create the various browsers.

Author Info:
By: James Payne
Rating: 4 stars4 stars4 stars4 stars4 stars / 7
January 07, 2008
TABLE OF CONTENTS:
  1. · JavaScript Errors
  2. · Try...Catch
  3. · Throwing the Ball (and Exceptions)
  4. · By the Numbers

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
JavaScript Errors
(Page 1 of 4 )

Old Schooling it with the OnError Event

I believe we covered this briefly in our last series, but we will do so a little more in depth here. The OnError event occurs whenever there is a script error on the page. To use the event, you create a function to deal with the error. When the error occurs, the function is called by the Onerror event handler, which consists of three arguments: the error message (msg), the URL of the page where the error occurred (url), and the line where the error occurred (line). Here it is in code:


<html>

<head>

<script type="text/javascript">

onerror=handletheerror

var txt=""


function handletheerror(msg,url,l)

{

txt="An error has occurred.nn"

txt+="Error: " + msg + "n"

txt+="URL: " + url + "n"

txt+="Line: " + l + "nn"

txt+="Click OK to continue.nn"

alert(txt)

return true

}


function message()

{

adddblerto("Greetings!")

}

</script>

</head>


<body>

<input type="button" value="Click to trigger the error" onclick="message()" />

</body>


</html>

In the code above, we create a function named handletheerror that will occur when the Message function fails to work (note that this function fails to work because the adddblerto should actually be code for an alert, but has many typos; if you fixed the code, the onerror event would never occur). It triggers a pop-up box that tells you an error has occurred, the URL at which it occurred, and on which line in the code the error appears.

Note that when counting lines, JavaScript includes blank lines as well.


blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Plugins for Menus
- Top jQuery Tutorials for Beginners
- New UI Framework and SDK for JavaScript Rele...
- JavaScript OpenPGP Tool, Node.js 0.6.3 Avail...
- Yahoo Releases Cocktails Language and Develo...
- Customizing jQuery Slideshows: Dynamic Contr...
- Customizing jQuery Slideshows: the animate()...
- Customizing jQuery Slideshows: slideUp() and...
- Customizing jQuery Slideshows: hide() and sh...
- Web Workers: Performing Calculations in Para...
- More Top JavaScript Frameworks and Libraries
- More Dynamic jQuery Styling Techniques
- The Top JavaScript Libraries
- The Top JavaScript Frameworks
- Dynamic jQuery Styling

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 9 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials