Skip to content

Instantly share code, notes, and snippets.

@hcliff
Last active December 23, 2015 09:39
Show Gist options
  • Save hcliff/6615960 to your computer and use it in GitHub Desktop.
Save hcliff/6615960 to your computer and use it in GitHub Desktop.
Example code for archetype of indexing code via an ajax get
<script type='text/javascript'>
$(function(){
$.ajax({
url: '//archetype.spling.com/api/2/indexing/',
dataType: 'json',
timeout: 200,
data: {},
error: function(){}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment