InterviewSolution
Saved Bookmarks
| 1. |
How To Hide Javascript Code From Old Browsers That Dont Run It? |
|
Answer» Use the below specified style of comments <SCRIPT language=javascript> <!-- javascript code goes here // --> or Use the <NOSCRIPT>some HTML code </NOSCRIPT> tags and code the DISPLAY html statements between these and this will appear on the page if the BROWSER does not support javascript Use the below specified style of comments <script language=javascript> <!-- javascript code goes here // --> or Use the <NOSCRIPT>some html code </NOSCRIPT> tags and code the display html statements between these and this will appear on the page if the browser does not support javascript |
|