[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
siami 07072025
/
js
/
plugins-init
/
[
Home
]
File: jqvmap-init.js
(function ($) { "use strict" /******************* jQvectormap *******************/ $('#world-map').vectorMap({ map: 'world_en', backgroundColor: 'transparent', borderColor: 'rgb(239, 242, 244)', borderOpacity: 0.25, borderWidth: 1, color: 'rgb(239, 242, 244)', enableZoom: true, hoverColor: 'rgba(239, 242, 244 0.9)', hoverOpacity: null, normalizeFunction: 'linear', scaleColors: ['#b6d6ff', '#005ace'], selectedColor: 'rgba(239, 242, 244 0.9)', selectedRegions: null, showTooltip: true, onRegionClick: function(element, code, region) { var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); alert(message); } }); $('#usa').vectorMap({ map: 'usa_en', backgroundColor: 'transparent', borderColor: 'rgb(239, 242, 244)', borderOpacity: 0.25, borderWidth: 1, color: 'rgb(239, 242, 244)', enableZoom: true, hoverColor: 'rgba(239, 242, 244 0.9)', hoverOpacity: null, normalizeFunction: 'linear', scaleColors: ['#b6d6ff', '#005ace'], selectedColor: 'rgba(239, 242, 244 0.9)', selectedRegions: null, showTooltip: true, onRegionClick: function(element, code, region) { var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); alert(message); } }); })(jQuery);