On my map, the corresponding infobox closes on marker mouseout event. But I dont want to close the infobox when the cursor is over it.
How can i do this? Tried with is(":hover"), but didn't work.
My Code:
var ib = new InfoBox(infoBoxOptions);
google.maps.event.addListener(marker, "mouseover", function () {
ib.Open();
});
.maps.event.addListener(marker, 'mouseout', function () {
ib.close()
});