I'm using a wordpress plugin that broke with update of jquery. Would like to fix it for myself and others since the plugin has been abandoned.
It seems this line is one of the culprits:
$nice_navigations.find("ul a").live("click", function(e, isFromLI)
I've read the documentation and tried:
$nice_navigations.on('click', 'ul a', function(e, isFromLI))
But I get an error. I appreciate any help.