livequery
livequery copied to clipboard
livequery is not working with WordPress 5.6
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);
}
});
});