// JavaScript Document $('document').ready(function(){ $('#mapForm').change(function(){ var selectedProvince = $('#mapForm option:selected').val(); if(selectedProvince=='all'){ $('a.dot').show(1000); }else{ $('a.dot[province*="'+selectedProvince+'"]').show(1000, function(){$(this).trigger('click');}); $('a.dot[province!="'+selectedProvince+'"]').hide(1000); } }); $('a.dot').click(function() { $('a.dot').removeClass('selected'); $(this).addClass('selected'); var province = '.city_detail#' + $(this).attr('province'); var htmlCode = $(province).html(); $('.detail_container').fadeOut(500, function(){ $('.detail_container .city_detail').html(htmlCode); $('.detail_container').fadeIn(500); }); }); });