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>