A lightweight Ajax framework that simplifies ajax requests with the help of HTML 5 data attributes.
<div class="container">
<form class="ajax" action="/api/test" method="post" data-cb="Namespace/testcb">
<input type="submit"/>
</form>
</div>
Namespace:
testcb: (isSuccess, data) ->
alert(isSuccess)
$('.container').ajaxIt()