About 519,000 results
Open links in new tab
  1. How to detect if JavaScript is disabled? - Stack Overflow

    Sep 23, 2008 · <noscript> IS the most semanticly accurate way to specify non-javascript content - and rather then detecting if javascript is disabled, detect if it's enabled. So show the "you need javascript …

  2. How to check if Javascript is enabled in a browser

    Jul 28, 2011 · I want to know how to check if Javascript enabled in a browser. I need that to avoid server side validation.

  3. How to check browser's JavaScript is enabled or not

    Sep 17, 2010 · My application depends on JavaScript, I want to check the client browser's JavaScript is enabled or not and raise an alert message if its turned off.

  4. Check if JavaScript is enabled with PHP - Stack Overflow

    That means literally, the way to check javascript is to run javascript. If javascript is disabled on the browser side it's not possible to check if the client is Javascript capable (like Dillo with it's default …

  5. html - How to check if javascript is enabled? - Stack Overflow

    But this wouldn't work if a person who is visiting has disabled javascript in the browser settings. How do I check if the javascript is disabled? And how do I display a message saying enable javascript since …

  6. How to detect that JavaScript and/or Cookies are disabled?

    Jan 5, 2011 · 4 Assuming JavaScript is enabled, this will tell you if cookies are enabled or not. Works in old browsers.

  7. Check if javascript is enabled in browser - Stack Overflow

    Sep 28, 2010 · User agents without Javascript won't know any different, and those with will get a richer experience. Simply use the noscript tag as a warning rather than a full redirect to another page, see …

  8. php - Check whether Javascript is enabled - Stack Overflow

    Jul 13, 2011 · Whether or not javascript is enabled is only known from within the context of a browser, so the best you can do is write some browser-side code to set a flag based on if javascript is enabled or …

  9. Check if third-party cookies are enabled - Stack Overflow

    I have an application that needs to check whether the client browser has third-party-cookies enabled. Does anyone know how to do this in JavaScript?

  10. javascript - How to enable a disabled checkbox dynamically? - Stack ...

    Jul 11, 2013 · function enable() { document.getElementById("check").disabled = false; } function disable() { document.getElementById("check").disabled = true; } A control will remain disabled if the …