I experimenting with d3.js and how to implement the framework.
At this stage of experimental implementation, I would like to make the filled Countries create alerts when I click them.
The ultimate goal is to change the alert to a page re-route, using the country name to decide which page it gets routed to.
In depth explanations are greatly appreciated.
Here is the code:
 var map = new Datamap({
    element: document.getElementById('container'),
    fills: {
        PARTS:'green',
        defaultFill: 'black'
    },
    data: {
        USA: {
            fillKey: 'PARTS'
        },
        IRL: {
            fillKey: 'PARTS',
        }
    },
    done: function(datamap) {
        datamap.svg.selectAll('.datamaps-subunit').on('click', function(geography, data) {
           if(data.fillKey=='PARTS'){
            alert(geography.properties.name);
           }
        });
    }
});
