Now I know that with internal code, you can comment it and thus render it invisible to non-js browsers eg:
But, if I use the following code:
will non-js browsers show the unrecognised code in external.js? Or should I comment the entire code of the external file?
Code:
<script type="text/javascript" language="javascript">
<!-- Hello world! -->
</script>
<noscript>
Sorry folks. You need Javascript.
</noscript>
Code:
<script type="text/javascript" language="javascript" src="external.js">
</script>
<noscript>
Sorry folks. You need Javascript.
</noscript>