ok. what i want is the following: i want to control a mouseover of a marker with jquery.
how can i do that? i have no experience with pure js. (and i don't want to use a jquery-plugin)
i tried this:
google.maps.event.addListener(marker, 'ggmouseover', function() {
marker.setIcon(pinred);
});
ggmouseover.mouseover();
this does not work. (it works with 'mouseover' instead of 'ggmouseover') i want to create a function or something i can call later through jquery.
like: $('#button').mouseover(function(){ ggmouseover(); });
how can i do this? ideas?