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 :-)

Link to comment
Share on other sites

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>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.