/* lfcm-distributor_script: (http://www.nawozydlaogrodu.pl/wp-content/plugins/lfcm/modules/distributor/js/lfcm-distributor_script.js) */ jQuery(document).ready(function(e) { jQuery('img[usemap]').rwdImageMaps(); jQuery('area').on('click', function() { jQuery("#dystrybutorzy").html(''); wojewodztwo = jQuery(this).attr("data-option-value"); jQuery.ajax({ type : "post", dataType : "json", url : lfcm_ajax.ajaxurl, data : {action: "user_get_distributor_by_province_id", wojewodztwo : wojewodztwo}, success: function(response) { if(response.type == "success") { jQuery("#dystrybutorzy").html(response.content); } else { alert("brak danych") } } }) }); jQuery('#mapa_dystrybutorzy').mapster({ //mapKey: 'data-key', singleSelect: true, fillColor: '5c87d0', fillOpacity: 0.5, stroke: true, strokeColor: '5696ce', strokeWidth: 1.5, render_highlight: { stroke: true, strokeWidth: 1.5, strokeColor: '5696ce', fillColor: '5c87d0', fillOpacity: 0.5, fill: true }, fill: true, onClick: function (e) {} }); });