static.js.lostpassword.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of formkiq-server Show documentation
Show all versions of formkiq-server Show documentation
Server-side integration for the FormKiQ ios application
$(document).ready(function() {
$("#lostpasswordform").submit(function(event) {
postRequest($(this), "/api/users/lostpassword", "", "");
return false;
});
});