Forum Moderators: coopster

Message Too Old, No Replies

Php detecting javascript enabled

What is a difference between java, javascript and applet?

         

rokec

8:55 am on Sep 10, 2006 (gmt 0)

10+ Year Member



Is there any php script to detect if java or javascript is enabled?

What is a difference between java, javascript and applet?

barns101

1:03 pm on Sep 10, 2006 (gmt 0)

10+ Year Member



PHP can't detect whether or not JavaSceipt is enabled because it's all executed server-side, and JavaScript is run client-side.

eelixduppy

6:51 pm on Sep 10, 2006 (gmt 0)



If you need javascript for something that you are doing, then NOSCRIPT would be of help for those that don't have it enabled.

<noscript>
<p>JavaScript must be enabled for this to work!</p>
</noscript>

Good luck!