Created
October 26, 2012 17:48
-
-
Save justinperkins/3960219 to your computer and use it in GitHub Desktop.
Put auth-token on all jQuery Ajax Requests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
var tokenValue = $("meta[name='csrf-token']").attr('content'); | |
$.ajaxSetup({ | |
headers: {'X-CSRF-Token': tokenValue} | |
}); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This might be of your interest. This code extends jQuery Ajax to include token to the defined ajax requests types that was previously get from your server.
I successfully use that code in many projects
the url is here: https://github.com/marcinkrysiak1979/jquery-ajax-addToken