Skip to content

Instantly share code, notes, and snippets.

@xjackk
Created February 19, 2016 08:51
Show Gist options
  • Save xjackk/f6e074244ddd25738498 to your computer and use it in GitHub Desktop.
Save xjackk/f6e074244ddd25738498 to your computer and use it in GitHub Desktop.
Random Cat Picture
getCats = ->
$.get 'http://thecatapi.com/api/images/get?format=xml&size=med&results_per_page=20', (data) ->
xmlimages = $(data).find 'image'
randomimage = xmlimages[Math.floor(Math.random() * xmlimages.length)]
imageurl = $(randomimage).find("url").text()
@xjackk
Copy link
Author

xjackk commented Feb 19, 2016

cats everywhere ~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment