Tuesday, November 2, 2010

The HTML noscript Element

The <noscript> tag is used to provide an alternate content for users that have disabled scripts in their browser or have a browser that doesn’t support client-side scripting.
The noscript element can contain all the elements that you can find inside the body element of a normal HTML page.
The content inside the noscript element will only be displayed if scripts are not supported, or are disabled in the user’s browser:

<script type="text/javascript">
document.write("IRENG BLOG")
</script>
<noscript>Sorry, your browser does not support JavaScript!</noscript>

0 komentar:

Post a Comment