clojure.browser.dom/remove-children

functionsince v0.0-927Edit
(remove-children id)

Source docstring:
Remove all children from the element with the passed id.
Source code @ clojurescript:src/main/cljs/clojure/browser/dom.cljs
(defn remove-children
  [id]
  (let [parent (gdom/getElement (name id))]
    (do (gdom/removeChildren parent))))