About 525,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 …

  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 …

  5. 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.

  6. 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 …

  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 …

  8. javascript - How to enable a disabled checkbox dynamically?

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

  9. Check if textbox disabled or enabled in JavaScript

    43 How do I check if a textbox is disabled or enabled in JavaScript? I just want to know if a textbox is enable or disabled on button click. If the textbox is disabled I want to alert the user …

  10. How do I detect dark mode using JavaScript? - Stack Overflow

    May 31, 2019 · So, you could use JavaScript to change the src attribute's value of the img element to the correct URL based off of the color-scheme. There is probably more uses, but …