user1755949
user1755949

Reputation: 93

jquery validations not working in ie on submit button click

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

Answers (1)

Suman Bogati
Suman Bogati

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

Related Questions