jquery tutorial

HTML

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Demo</title>
  </head>
  <body>
    <a href="http://jquery.com/">jQuery</a>
      <div id="images"/>
  </body>
</html>

CSS

a.test { font-weight: bold; font-size:2cm}

CoffeeScript

$(document).ready ->
  $('a').click (event) ->
    alert 'As you can see, the link no longer took you to jquery.com is it large?'
    event.preventDefault()
    return
  return