
$(function() {
  $('#subscribe_form').submit(function() {
    $el = $(this);
    $.ajax({
      url: $el.attr('action'),
      type: 'POST',
      dataType: 'html',
      data: $(this).serialize(),
      success: function(data, textStatus) {
        $el.html(data);
      }
    });
    
    return false;
  });
});

