[SOLVED] Proper way to send an Authenticity Token with AJAX to Rails

Issue This works but gets stopped because it lacks an authenticity token: $(“.ajax-referral”).click(function(){ $.ajax({type: “POST”, url: $(this).parent(“form”).attr(“action”), dataType: “script”}); return false; }); So I tried adding it like so: $(“.ajax-referral”).click(function(){ $.ajax({type: “POST”, url: $(this).parent(“form”).attr(“action”) + “?&authenticity_token=” + AUTH_TOKEN, dataType: “script”});

Continue reading