HTML <noscript> element


<noscript> tag defines the content to show when the browser do not support the specific script.

<input type="button" style="width:100px;height:24px;font-size:15px" 
onClick="alert('Javascript is supported by this browser');" 
value="JS Support">
<noscript>Javascript is not supported by this browser</noscript>