Hi! I wonder if someone might tell me what I'm doing wrong here. (ns hello (:require [goog.fx :as fx] [goog.dom :as dom]))
(defn ^:export main [] (let [kurdt (dom/getElement "kurdt")] (dom/appendChild (.body (dom/getDocument)) (dom/createDom "h1" 0 (dom/getOuterHtml kurdt))) (fx/Dragger. kurdt) (dom/appendChild (.body (dom/getDocument)) (dom/createDom "h1" 0 (dom/getOuterHtml kurdt))))) with the HTML: <html> <head></head> <body> <script type="text/javascript" src="hello.js"></script> <img src="KURDT1.JPG" id="kurdt" border="0" /> <script> hello.main(); </script> </body> </html> As you can see here http://www2.warwick.ac.uk/fac/cross_fac/comcom/dtcsite/people/students2009/tucker/test2, I am only getting the first output, as if the call to fx/Dragger. is stopping the script. Thank you! Alistair -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en