Skip to content

Instantly share code, notes, and snippets.

@jsenin
Created September 28, 2015 19:10
Show Gist options
  • Save jsenin/eb493bb98652804ad28f to your computer and use it in GitHub Desktop.
Save jsenin/eb493bb98652804ad28f to your computer and use it in GitHub Desktop.
one line jquery to do a request using OPTIONS at headers trying to retrieve supported methods for API REST services
$.ajax('/users/new', {type:'OPTIONS'} ).done( function( data, textStatus) { console.log('->', data ); } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment