steeve:jquery-form-helpers

v0.0.7Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

jquery-form-helpers

jquery form helpers that work well with meteor

meteor add steeve:jquery-form-helpers

usage

Convert form values to JSON doc in one line.

var params = $('#insert-form').toJSON();
MyCollection.insert(params);

Reset form in one line.

$("#insert-form").reset();