Jump to content

[SOLVED] Is there a way to do this?


ballhogjoni

Recommended Posts

if javascript is disabled, you cant use javascript to enable it... so... no... however... thats what the <noscript> tag was made for...

 

you can be a punk... like so...

 

<noscript>
YOU MUST ENABLE JAVASCRIPT!!! ROAR!
<div style="display:none;">
</noscript>
all your body in here
</div>

 

then... if its off... they cant see your site :-)

you cannot enable or disable javascript client side or server side; each end user has to enable/disable javascript threw their browser options. the script below will let you know if javascript is enabled or disabled.

 

<script language="javascript">
document.write("<p>JavaScript Is Enabled On Your Browser</p>");
</script>
<noscript>
<p>JavaScript Is <u>Not</u> Enabled On Your Browser</p>
</noscript>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.