blob: f3a7bef3053877d551ba8a6d16075864123d7f2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE NoImplicitPrelude #-}
module Miso.FFI.Document where
import GHCJS.Types
import Protolude
foreign import javascript unsafe "$r = document.getElementById($1);"
getElementById :: JSString -> IO JSVal
foreign import javascript unsafe "$r = document.querySelector($1);"
querySelector :: JSString -> IO JSVal
|