Forum Moderators: open
I need some assistance with the above. I have a .js file included in an html page as below:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" >
<title>Untitled</title>
<link rel="stylesheet" type="text/css" href="styles.css" >
<link rel="stylesheet" type="text/css" href="niftyCorners.css">
<script type="text/javascript" src="nifty.js"></script>
<script type="text/javascript">
window.onload=function(){
if(!NiftyCheck())
return;
</script>
</head>
(I have removed some lines that I don't believe are relevant to the problem)
When testing this locally it works cross browser and has the desired effect. However, I have uploaded it to too different hosts and it would seem that the .js file is being ignored. I can't imagine that javascript is not supported by the webhosts...
Any suggestions as to what I have done wrong? If I need to provide more information please let me know.
Thanks