$ ender build domready qwery underscore
$('#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)
})