Report Bug
Qus : What is the correct way to embed JavaScript directly within an HTML file?
Qusजावास्क्रिप्ट को सीधे HTML फ़ाइल में एम्बेड करने का सही तरीका क्या है?

A.
B.
C. alert('Hello, World!');
D.


Solution
B. <script> alert('Hello, World!'); </script>



Explanation

JavaScript can be embedded inline within HTML elements by using event handler attributes, such as onclick, onmouseover, or onload. These attributes directly bind a JavaScript function to the element’s event





Report Bug