Skip to content

Instantly share code, notes, and snippets.

@petrblaho
Created January 8, 2010 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petrblaho/271924 to your computer and use it in GitHub Desktop.
Save petrblaho/271924 to your computer and use it in GitHub Desktop.
jQuery in Rails application
<%= javascript_include_tag 'jquery', 'jquery-ui' %>
<% if protect_against_forgery? %>
<script type='text/javascript'>
//<![CDATA[
window._auth_token_name = "#{request_forgery_protection_token}";
window._auth_token = "#{form_authenticity_token}";
//]]>
</script>
<% end %>
<%= javascript_include_tag 'application' %>
jQuery.ajaxSetup({ 'beforeSend': function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")} })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment