Skip to content

Instantly share code, notes, and snippets.

@aarkerio
Created August 27, 2018 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarkerio/d25b420e0c9774d6f45bf5b77889dad7 to your computer and use it in GitHub Desktop.
Save aarkerio/d25b420e0c9774d6f45bf5b77889dad7 to your computer and use it in GitHub Desktop.
(:require [goog.dom :as gdom]
[goog.style :as style])
(defn my-toggle [element-str]
(let [div-message (gdom/getElement element-str)]
(style/showElement div-message (not (style/isElementShown div-message)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment