hide JavaScript code from non-JavaScript browsers
Here we learn how to hide the javascript code from non javascript browsers , javascript disabled browsers and mobile browsers .Non javascript browsers renders the javascript code as generel text without exucuting the code. So we must aware how to hide the javascript from these browsers.
1 2 3 4 5 | <script type="text/javascript"> <!-- alert("This alert box is hidden from non javascript browsers.!!"); //--> </script> |



