Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Latest commit

 

History

History
26 lines (21 loc) · 563 Bytes

HEAD.md

File metadata and controls

26 lines (21 loc) · 563 Bytes

Build only what you need, when you need it.

$ ender build domready qwery underscore

Lightweight, expressive, familiar.

$('#content a.button')
  .bind('click.button', function (e) {
    $(this).data('clicked', true).unbind()
    e.preventDefault()
  })
  .css({
      opacity: 1
    , color: 'red'
  })
  .fadeOut(250)

$.map(['a', 'b', 'c'], function (letter) {
  return letter.toUpperCase()
})

$.ajax('/data', function (resp) {
  $('#content').html(resp)
})