livequery icon indicating copy to clipboard operation
livequery copied to clipboard

livequery is not working with WordPress 5.6

Open mswebworld opened this issue 5 years ago • 0 comments

I am using livequery 1.3.6. When I updated WordPress 5.6+ version, it doesn't work. Can you help me to fix the issue. I am using in my javascript function like below code

$('#my-popup').livequery( function() {
        swms.load();
        $('#my-popup').closest('#TB_window').addClass('my-shortcodes-popup');

        // activate color picker
        $('.wp-color-picker-field').wpColorPicker({
            change: function(event, ui) {
                setTimeout(function() {
                    swms.loadVals();
                    swms.cLoadVals();
                },
                1);
            }
        });
    });

mswebworld avatar Apr 16 '21 12:04 mswebworld