Public Vars

Back

get-hash (clj)

(source)

function

(get-hash driver)
Have `driver` fetch the current hash fragment for the current page (nil when not set). Example: ```Clojure (def driver (chrome)) (go driver "https://en.wikipedia.org/wiki/Clojure") (get-hash driver) ;; => nil (go driver "https://en.wikipedia.org/wiki/Clojure#Popularity") (get-hash driver) ;; => "Popularity" ```` See also: [[set-hash]].

Examples