-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Obtain minified jQuery code
--   
--   This package bundles the minified <a>jQuery</a> code into a Haskell
--   package, so it can be depended upon by Cabal packages. The first three
--   components of the version number match the upstream jQuery version.
--   The package is designed to meet the redistribution requirements of
--   downstream users (e.g. Debian).
@package js-jquery
@version 1.12.2


-- | Module for accessing minified jQuery code (<a>http://jquery.com/</a>).
--   As an example:
--   
--   <pre>
--   import qualified Language.Javascript.JQuery as JQuery
--   
--   main = do
--       putStrLn $ "jQuery version " ++ show JQuery.version ++ " source:"
--       putStrLn =&lt;&lt; readFile =&lt;&lt; JQuery.file
--   </pre>
module Language.Javascript.JQuery

-- | The version of jQuery provided by this package. Not necessarily the
--   version of this package, but the versions will match in the first
--   three digits.
version :: Version

-- | A local file containing the minified jQuery code for <a>version</a>.
file :: IO FilePath

-- | A remote URL of the jQuery sources for <a>version</a>. The URL <i>does
--   not</i> have a protocol prefix, so users may need to prepend either
--   <tt>"http:"</tt> or <tt>"https:"</tt> (both work). The URL currently
--   uses the jQuery CDN links at <a>http://code.jquery.com/</a>.
--   Alternative CDN links are listed at
--   <a>http://jquery.com/download/#using-jquery-with-a-cdn</a>.
url :: String
