JavaScript Jquery

JavaScript Exception Handling Techniques1 min read

Like the Object oriented programming the exception handling is also not used while coding in JavaScript. That why in most of cases if there is any problem in one part in a page then surprisingly other part also stops working. In this post we will be discussing the various techniques to handle exceptions in JavaScript.

Using try..catch block

try..catch block in JavaScript is very much similar to the regular C# try..catch block. The suspected code will be put in try block and all exceptions which will occur in the try block will be caught in catch block.




Output:

In catch you will get the object containing type and description of the exception. More over you can also use finally block in the same way as you use in C#.

Using onerror event

onerror event will be raised each time there is any error while performing a action in the document. This like on place exception handling similar to Application_Error in ASP.NET. Here is sample code which demonstrate this:

Using jQuery Solution

It is similar to using onerror but with jQuery syntax. The syntax is:

 

Leave a Comment