JavaScript error – $(…).live is not a function
-
TypeError: $(…).live is not a function
$(‘.wpfp-link’).live(‘click’, function() {
wpfp.js?ver=3.5.1 (line 2)This happens because live is deprecated in the latest jQuery, on should be used instead:
http://api.jquery.com/on/
The topic ‘JavaScript error – $(…).live is not a function’ is closed to new replies.