HTML/JS Execution Order

191 Views Asked by At

I am trying to understand the Execution Order of HTML and JS functions. Code:

<!DOCTYPE html>
<html>
   <head>
      <script>

         function myFunction()
         {
            var x=document.getElementsByName("check1");
            x[0].disabled=true;
            x[0].checked=true;
            x[0].value="Y";
         }

         function myFunction1()
         {
            var x=document.getElementsByName("check1");
            alert(x[0].value);
         }

      </script>
   </head>
   <body onload="myFunction()">
      <h1>Hello World!</h1>
      <form>
         <input type="checkbox" name="check1" unchecked enabled value="N"/>
         <input type="button" value="Button" onclick="myFunction1()"/>
      </form>
   </body>
</html>

Finally the element "check1" value is =Y. finally checkbox is checked and disabled. Can anyone explain about this. I have already gone through this link which is very useful: Load and execution sequence of a web page?

Still the above example will help bit more .Thanks

3

There are 3 best solutions below

0
On

first you change the name of functions.. it must be different. then the execuation order is

  • first onbody load function is called then input button function called. you can even check it by alert that.
1
On

If I understood your question you mean why your checkbox value is 'Y' despite you disabled the checkbox.

disabling checkbox only make it inactive as far as User Interface is concerned but through script you can still change the value.

0
On

The "myFunction()" method called in on load event so that it executed immediately after a page is loaded. and the function "myFunction1()" called on button click event .And you are initializing check box value with "N" value thats why it displaying n after every page load function