html Noframes Tag

In the html <noscript> tag is used to disable scripts for browser or does not support client side scripting. Which tag you can use inside of body for html page.you can join in this tag at <script> element.If you need to use <noscript> tag ,put content or any tag between <noscript> and </noscript> tag. All main browsers are supported in <noscript> tag.

The standard attributes are class, dir, id, lang, style, title, xml:lang and event attributes are onclick, ondblclick, onmousedown, onmousemove, onmouseout, onmouseover, onmouseup, onkeydown, onkeypress, onkeyup.

Syntax:

<noscript> ... </noscript>

Example Code

<input type="button" onclick="alert('This does not applied <noscript> tag');" value="Button1" />
<input type="button" onclick="<noscript> alert('This does applied <noscript> tag'); </noscript> " value="Button2" />

Out Put:



In the above example have in two buttons. In the first button is does not applied <noscript> tag so if you click button the alert will say to 'This does not applied <noscript> tag' message will display and in the second button does applied <noscript> tag if you click button any alert will not display here.





Content