hrzlvn/coursequestionbank

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

Summary

Maintainability
A
45 mins
Test Coverage
var RemoveTags = {
  setup: function() {
    $('.remove_tag').submit(function() {
      $(this).parent().remove();
      $.ajax({
        url: $(this).attr('action'),
        type: 'POST',
        data: $(this).serialize()
      });
      return false;
    });
  }
};
$(RemoveTags.setup);