Nov 11 2009 09:03 AM 5988 11 JavaScript in HTML anilyashsoni Which tag do we use insert a JavaScript in HTML page? Mahendar Dec 30th, 2011 We use < script > tag to indicate javascript in html. Place this inside < head > tag. Example:Code <script type="text/javascript"> function xyz() { /// your code } </script> Nisa Oct 10th, 2011 Having type property value is javascript so following code will be used for putting javascript in HTML Code<script type="text/javascript"> </script> Answer Question Select Best Answer
Nov 11 2009 09:03 AM 5988 11 JavaScript in HTML anilyashsoni Which tag do we use insert a JavaScript in HTML page? Mahendar Dec 30th, 2011 We use < script > tag to indicate javascript in html. Place this inside < head > tag. Example:Code <script type="text/javascript"> function xyz() { /// your code } </script> Nisa Oct 10th, 2011 Having type property value is javascript so following code will be used for putting javascript in HTML Code<script type="text/javascript"> </script> Answer Question Select Best Answer
Mahendar Dec 30th, 2011 We use < script > tag to indicate javascript in html. Place this inside < head > tag. Example:Code <script type="text/javascript"> function xyz() { /// your code } </script>
Nisa Oct 10th, 2011 Having type property value is javascript so following code will be used for putting javascript in HTML Code<script type="text/javascript"> </script>