My jquery code works with Chrome, Firefox,> IE8, but it seems that jQuery and jquery ui are not loaded on IE8.
Javascript is included.
I use <meta http-equiv="X-UA-Compatible" content="IE=7,IE=8" /> because I had some problems with IE9
<head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=7,IE=8" /> <link href="css/my.css" rel="stylesheet" type="text/css" media="screen" /> <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" /> <script src="http://code.jquery.com/jquery-1.8.2.js"></script> <script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script> <script type="text/javascript" src="js/jquery-ui-timepicker-addon.js"></script> <link href="css/jquery-ui-timepicker-addon.css" rel="stylesheet" type="text/css" media="screen" /> <script type="text/javascript"> $(function(){ }); </script> </head>
Any suggestion? What should I check?
EDIT
Changing
<meta http-equiv="X-UA-Compatible" content="IE=7,IE=8" />
to
<meta http-equiv="X-UA-Compatible" content="IE=8" />
fixes most problems in IE8.
The only problem that still remains is with the popup:
when there is a button that causes the pop-up window, clicking on the pop-up "OK" does not cause the corresponding action (the button is inside the tag).
source share