HTML DOMException message Property

The DOMException message property returns a DOMString representing a message or description associated with the given error. This is a read-only property.
Syntax:
domException.message
Return Value: This property returns a DOMString associated with an error.
Example: This example illustrates the use of DOMException message property.
HTML
<!DOCTYPE html><html>Â
<body>Â Â Â Â <h1>zambiatek</h1>Â
          <p>        Click below to get        the exception message    </p>Â
Â
Â
    <button onclick="get()">Click</button>Â
    <p class="p">Error Message is : </p>Â
Â
Â
    <script>        function get() {            try {                // INVALID_CHARACTER_ERR                var elem = document                    .createAttribute("123");            }            catch (e) {                document.querySelector(".p")                    .textContent += e.message;            }        }     </script></body>Â
</html> |
Output:
Before Clicking the Button:
After Clicking the Button:
Supported Browsers:Â
- Google Chrome 1
- Edge 12
- Firefox 1
- Internet Explorer 9
- Safari 1
- Opera 12.1
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!




