Skip to content

Instantly share code, notes, and snippets.

@AndAShape
AndAShape / gist:1a32da85ed6001d62986
Created April 3, 2015 14:09
AJAX request with Bacon.js
$('#authenticateCont form')
.asEventStream('submit')
.map(function(e) {
e.preventDefault();
return $(e.target);
})
.filter(function(form) {
return form.valid();
})
.flatMapLatest(function(form) {