Categories: Javascript

JavaScript onerror() method to handle error

Share

The JavaScript onerror method is the first thing to handle error in JavaScript. This error event is called on the window object whenever any exception occurs on the page.

There are three pieces of information to identify the exact error:

  • Error message
  • URL, in which file the error occurred
  • The line number in the given URL where error occurred

Example of JavaScript onerror:

<html>
<head>
<script type="text/javascript">
window.onerror = function (msg, url, line) {
console.log("Message : " + msg );
console.log("url : " + url );
console.log("Line number : " + line );
}
</script>
</head>
<body>
<p>Click the following button:</p>
<form>
<input type="button" value="Click Here" >

Read Also: JavaScript Strict mode

Alternatively, you can use an onerror method to display an error message if there is any problem in loading an image.

<img src="image.jpg" onerror="alert('Loading failed')" />

Recent Posts

Editorial Elevation: Refined Writing Services

Introduction The influence of words is more significant than ever in a digital age. Whether…

7 hours ago

Top Advantages of Augmented Reality in Healthcare

The success of any tech innovation depends on its share in various industries and business…

1 day ago

Recover From Google Penalties in 10 Steps in 2024

Facing Google penalties can be a daunting challenge for businesses relying on organic search traffic.…

2 days ago

What is the Future of Artificial Intelligence?

Technology, undeniably, has made our lives easier. But the advent of artificial intelligence has been…

2 days ago

Role of guest post services in SEO

Guest post services have become an essential tool for businesses and individuals looking to increase…

2 days ago

Top Programming Trends You Need to Know in 2024

Programming continues to evolve at a rapid pace, with new trends and technologies emerging every…

2 days ago