Reputation: 93
I am using below scripts in my header file.The validations are working fine in chrome and firefox.But when running on ie,sometimes the validations works and sometimes not working.I have checked the developer console in ie.But no error message showing there. Please suggests me how it will work in ie.
<script language="JavaScript" type="text/javascript" src="script/vars.js"></script>
<script language="JavaScript" type="text/javascript" src="script/jquery-ui-
1.9.1.custom.js</script>
<script language="JavaScript" type="text/javascript" src="script/jquery.validate.js">
</script>
<script language="JavaScript" type="text/javascript" src="script/script.js"></script>
<script src="http://www.datejs.com/build/date.js" type="text/javascript"></script>
Upvotes: 0
Views: 42
Reputation: 6349
You are missing ">
on
<script language="JavaScript" type="text/javascript" src="script/jquery-ui-
1.9.1.custom.js</script>
//-------------------^
It should be like
... jquery-ui-1.9.1.custom.js"> </script>
Upvotes: 1