I'm encountering some strange issues with my Internet Explorer IE7 browser on Windows 7. The jquery plugin I am attempting to use can be found at . Unfortunately, this plugin is not functioning properly on Internet Explorer IE7 on Windows 7, but it runs smoothly on the Internet Explorer 7 browser on a Red Hat Linux LAMP server. I am currently using Wampserver2.4-x86 on a Dell Inspiron.
Below is a snippet of my index.html code:
<DOCTYPE html>
<html>
<head>
<title>jVectorMap demo</title>
<link rel="stylesheet" href="jquery-jvectormap-1.2.2.css" type="text/css" media="screen"/>
<script src="jquery.js"></script>
<script src="jquery-jvectormap-1.2.2.min.js"></script>
<script src="jquery-jvectormap-us-aea-en.js"></script>
</head>
<body>
<div id="USA-map" style="width: 1200px; height: 800px"></div>
<script language="javascript">
function processOrder() {
var pluginContainer = $("#USA-map");
pluginContainer.vectorMap({map: 'jquery-jvectormap-us-aea-en'});
}
</script>
</body>
<Script Language="JavaScript">
processOrder();
</Script>
</body>
</html>
Is anyone else facing similar challenges? Or is there additional code needed to make this work for Wampserver2.4-x86? Thank you in advance.