I am helping build a website within wordpress and I have a Jquery Map that loads perfect on every other browser but Internet Explorer. The issue is that it displays very small and is not responsive I am at a loss on what to do.
Some Solutions for this include adding but size is still to small.
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Here is the code that i have inserted into the page
<div id="map"></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="/wp-content/themes/happenstance/css/jquery.qtip.min.css"> </script>
<script src="/wp-content/themes/happenstance/js/mcm.clickable.map.js"></script>
<script>
var map = $("#map").ezClickableMap({});
</script>
Here is the code code that is for the page. The map is responsive for every other browser except IE family of browsers. How can i fix it?