timezonepicker icon indicating copy to clipboard operation
timezonepicker copied to clipboard

Success callback

Open mistris opened this issue 8 years ago • 0 comments

$('#timezone-image').timezonePicker({
            pin: '.timezone-pin',
            fillColor: 'FFCCCC',
            target: '#edit-date-default-timezone',
            changeHandler: function (timezoneName, countryName, offset) {
                console.log(timezoneName, countryName, offset);
            }
        });

changeHandler is not working. How can I call a function on success callback (after selecting timezone)?

mistris avatar May 30 '16 06:05 mistris