Skip to content

Instantly share code, notes, and snippets.

@micrub
Forked from mjg123/ajax.cljs
Last active August 29, 2015 14:07
Show Gist options
  • Save micrub/a606f94907e8dc4f7d74 to your computer and use it in GitHub Desktop.
Save micrub/a606f94907e8dc4f7d74 to your computer and use it in GitHub Desktop.
(def jquery (js* "$"))
(defn show [msg]
(let [data-as-json ((js* "JSON.stringify") msg nil 4)]
((js* "alert") data-as-json)))
(defn make-js-map
"makes a javascript map from a clojure one"
[cljmap]
(let [out (js-obj)]
(doall (map #(aset out (name (first %)) (second %)) cljmap))
out))
(defn doajax []
(.ajax jquery
"http://api.stackoverflow.com/1.1/users/268619"
(make-js-map
{:success show
:dataType "jsonp"
:jsonp "jsonp"})))
(.ready (jquery (js* "document"))
doajax)
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="hello.js"></script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment