You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function .live() is deprecated in jQuery 1.9.
The best way to solve this is replace Line 56:
$('body').live('click', function() {
with correction:
$(document).on('click', 'body', function() {
Function .live() is deprecated in jQuery 1.9.
The best way to solve this is replace Line 56:
$('body').live('click', function() {
with correction:
$(document).on('click', 'body', function() {
See more details on:
http://www.tvarwebu.cz/blog/2013/01/jquery-simple-color-picker/
The text was updated successfully, but these errors were encountered: