Danh mục: Thủ thuật WordPress

jQuery.fn.live(), .browser, .size(), fn.load() không còn được dùng nữa

Dưới đây là cách khắc phục khi jQuery.fn.live(), .browser, .size(), fn.load() không còn được dùng nữa. $(document).on('event', 'selector', function() {}); Thay thế..live() $('selector').on('event', 'selector', function() {}); Thay thế..delegate() $('selector').on('event', function() {}); Thay thế..bind() Tài liệu: http://api.jquery.com/on/ http://api.jquery.com/off/ Trang …