Hello, How do I go about calling a function within a jQuery array to add another array?
$('#map').zoommap({
// Width and Height of the Map
width: '490px',
height: '380px',
//Region
map: function getMaps();
});
getMaps() should return the following:
{
id: 'campus',
image: '/resources/images/maps/'+mapId,
data: '',
maps: []
}
Cheers, Nick