Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some Javascript that I am trying to use for a website. It works fine if I view the files in the browser, but as soon as I try to run them on a server Chrome wont run the Javascript. I tested the sites on the servers using IE and I had no issues.

The servers I tested this on were launched by visual studio and netbeans. I have not tried the code on a standalone server or in FireFox. The code itself is not the issue but the Google Chrome browser.

To be specific this problem is when trying to call javascript functions from the html code. Javascript works when the functions don't rely on html events(tested using Google Maps).

Note: I tested this with the alert function to ensure it was not something in my code.

--EDIT--

You wanted code here is code:

<!--
To change this template, choose Tools | Templates and open the template in the editor.
-->
<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <script>

        function test(value){
            alert('test alert');
        }

        </script>
    </head>
    <body>
        <div>Enter Credit Card Number: <input type="text" onblur="test(this.value);" /><br/><input type="submit" value="Submit" onclick="alert('another test');"/></div>
        <span id="output">
        </span>
    </body>
</html>
share|improve this question
2  
Can you post the JS code? – aam1r Dec 4 '12 at 21:23
1  
And did you check your console for any errors? – ahren Dec 4 '12 at 21:23
2  
What does your error console say? That's where you must always start. – Michael Berkowski Dec 4 '12 at 21:23
4  
This has to be one of the most vague questions I have seen. It has potential, but as it stands, no one can answer it. – Travis J Dec 4 '12 at 21:24
2  
"The code itself is not the issue" - I doubt that, but I can't tell you more without seeing any code. – Bergi Dec 4 '12 at 21:27
show 11 more comments

closed as not a real question by ahren, bensiu, Kirk Broadhurst, Dante is not a Geek, Andrew Whitaker Dec 5 '12 at 2:02

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

To re-enable disabled or partially enabled JavaScript in Google Chrome, do the following steps

  1. Open your settings chrome://chrome/settings/
  2. Click Show advanced settings...
  3. In the Privacy section, click Content settings...
  4. In the JavaScript section, choose Allow all sites to run JavaScript (recommended)
  5. Click OK
share|improve this answer
Already checked that. That was the first thing I looked at. – RMDan Dec 4 '12 at 22:26
Is the exceptions list there empty too? If yes, then unless you have some add-on causing this behaviour (find by disabling them all and re-enabling one at a time) then I doubt you'll find an answer and a re-install (forgetting all settings) is the best way to fix it, probably. – Paul S. Dec 4 '12 at 22:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.