studpad/studpad

View on GitHub
app/assets/javascripts/change_password.js

Summary

Maintainability
A
1 hr
Test Coverage

$(document).on("page:load ready", function(){
  $('#change-password').click(function(){
    $("#change-password-form").ajaxSubmit({
      success: function(data, status, response) {
        $('.notice-content').removeClass('error').html(response.responseText);
        $('.notice').fadeIn()
      },
      error: function(data) {
        $('.notice-content').addClass('error').html(data.responseText);
        $('.notice').fadeIn()
      }
    });
  })
})