$(function(){ new $.module['board.lists']( $('form.lists-form'), { 'callback' : function($this){ // 콜백 함수 } } ); $(document).on('click', '.network-map-pin button', function() { const location = $(this).data('value'); $('#location option[value="' + location + '"]').prop('selected', true); $('#location_'+ location).trigger('click'); $('#location').trigger('change'); // Remove 'on' class from all buttons and add to clicked button $('.network-map-pin button').removeClass('on'); $(this).addClass('on'); // Smooth scroll to request div $('html, body').animate({ scrollTop: $('.request').offset().top - 100 }, 500); }); });