module Text.CxML.JS where

import Text.CxML.Types
import Text.CxML.Tags
import Text.CxML.HTML


-- link to JavaScript file
jslink url = script!("type","text/javascript")!("src",url)

--  add JavaScript
(^:) :: CxML a->[JSDecl]-> CxML a
tag ^: jsd = CxML (htm tag, titleParts tag, css tag, js tag ++ jsd)