Skip to content Skip to sidebar Skip to footer

Using Jquery Script With Ajax In Wordpress

I am using the Ajaxify WordPress Site (AWS) plugin for my wordpress site. I am also using a jQuery script for the menu. This basically animates the menu. ( function( $ ) { $( docum

Solution 1:

Instead of

$('#cssmenu li.has-sub>a').on('click', function(){...});

Try with

$(document).on('click', '#cssmenu li.has-sub>a', function(){...});

If you have a content that is loading with AJAX, and if you need to preform some kind of script with the click on this new element, you'll need to watch the entire document object for a click event. Alternatively you can watch for the container in which the content is loaded for a click events, it should work in theory iirc...

Post a Comment for "Using Jquery Script With Ajax In Wordpress"