файл обработки в папке темплейта дефолтного в /js/messages.js
this.noticeAction = function(id, name){ var pm_notices_window = $('#pm_notices_window'); var url = pm_notices_window.data('action-url'); var form_data = { notice_id: id, action_name: name }; $.post(url, form_data, function(result) { if (result.error) { return false; } if (result.href){ window.location.href = result.href; } $('#notice-'+id, pm_notices_window).fadeOut(300, function(){ $(this).remove(); }); }, "json"); return false; }