blob: b4fe44f19af7baaa7c0a8d7b4a09f60e45adceb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{-# 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
|