Question:Consider the following JavaScript alert:
<script type="text/JavaScript"> function message(){ alert("Welcome to ExpertRating!!!") } </script>You want the user to see the above message upon opening the page. How will you implement this?
A <body onload="message()">
B <body onunload="message()">
C <body onsubmit="message()">
D <body onreset="message()">
+ AnswerA
+ Report