(function($) { $(document).ready(function() { var basePath = Drupal.settings.basePath; var modPath = basePath + "conference_proposal/"; $shortlist = $(".shortlist"); $shortlist.click(function (e) { $(".sync-msg").remove(); $(this).after("Saving..."); $.ajax({ url: modPath + "ajax/shortlist/" + $(this).data("aid"), success: function() { $(".sync-msg").remove(); console.log("success"); } }); }); }); })(jQuery);