$ = jQuery; $(document).on('click','.more-link',function(e){ console.log("Entro por este") e.preventDefault(); link = $(this); id = link.attr('href').replace(/^.*#more-/,''); $.ajax({ url : owl360_vars.ajaxurl, type: 'post', data: { action : 'owl360_ajax_readmore', id_post: id }, beforeSend: function(){ link.html('Cargando ...'); }, success: function(resultado){ console.log(resultado) $('#post-'+id).find('.entry-content').html(resultado); } }); }); function owl360callAjaxActions(request_info, ajaxResponse) { console.log("Entro get Ajax: ",request_info ) var request = $.ajax({ type: 'POST', url: owl360_vars.ajaxurl, dataType: 'json', data: request_info, success: ajaxResponse, beforeSend: function(){ // link.html('Cargando ...'); } }); }