.get(callback)
.each(callback)
.each(callback,callback) – This fetches the results and runs a function on each one and optionally runs a callback after all have been run.
hifi({type: 'post'}).each(function(post){ alert(post.title); },function(){ alert('all done!')});
