Could we help you? Please click the banners. We are young and desperately need the money
The user working in the WordPress-Backend isn't able to save his post and the following error happens:
TypeError: $(...).live is not a function
jQuery.live() has been removed since version 1.9 and is not longer supported. To fix this issue you need to change your code from:
$(selector).live("click", function() { alert("Hello World!"); });
to:
$(selector).on("click", function() { alert("Hello World!"); });
or:
$(selector).click(function(){ alert("Hello World!"); });