$.simpleWeather({ location: 'Florence, Italy', woeid: '', unit: 'c', success: function(weather) { html = '

'+weather.temp+'°'+weather.units.temp+'

'; html += ''; for(var i=0;i'; } $("#weather").html(html); }, error: function(error) { $("#weather").html('

'+error+'

'); } }); $('#modal-contacts-open').on('click', function(e) { var mod = $('#main'), modal = $('#modal-contacts'); mod.animate({ opacity: 0 }, 400, function(){ $('html,body').scrollTop(0); modal.addClass('modal-active').fadeIn(400); //set up markers var myMarkers = {"markers": [ {"latitude": "39.9376684843393", "longitude":"39.9376684843393", "icon": "http://casaruralaras.com/wp-content/uploads/2017/05/Google-mas.jpg"} ] }; //set up map options $("#map").mapmarker({ zoom : 14, center : 'Calle Jueguecillo, 44, 46179 Aras de los Olmos, Valencia', markers : myMarkers }); }); e.preventDefault(); $('.modal-close').on('click', function(e) { modal.removeClass('modal-active').fadeOut(400, function(){ mod.animate({ opacity: 1 }, 400); }); e.preventDefault(); }); });