Detect if java script is enabled or not

Even if you are poor in javascript. you can do this. Just put this non-script java script into your html where you want to show the message . Its just that easy 


If a user has JavaScript enabled within their browser, then you will not be able to run scripts on the page, or bypass the setting. Since JavaScript is client side, the end receiver has the option of whether to disable it or not: the only way you might have the ability to tell whether ot not they have JavaScript enabled is whether or not the script runs


<script type="text/javascript">
document.write('Javascript is enabled');
</script>
<noscript>Javascript is disabled</noscript>