I just make a map using openlayer
I made a map in OpenLayers with our own homemade
But what makes me confused is that I can not integrate jQuery with OpenLayers, where I create a function that is simple jQuery show / hide ()
I tried to click on one of the marker in OpenLayers map which I have made, which has id #OL_Icon_43
inside div#map
OpenLayers and I tried to do the function hide()
using jquery in the <head>
tag that will hide the tag outside tag #map
, but that does not work for me
Can you help me please ?
This is the view which I make the jquery code :
$(document).ready(function(){
$("#OL_Icon_43").click(function() {
$("footer").hide();
});
});