Skip to content

Instantly share code, notes, and snippets.

@henryjuan
henryjuan / Comment.js
Created March 13, 2012 08:04
Comment object on front end
Comment = {
options : {
url: makeUrl({module: 'comment2', action: 'addComment'}),
dataType: 'json',
beforeSubmit : function(){
$('.ajax_loader').show();
},
success: function(response, status){
// display msg to user
Comment.showMessage(response.aMsg.message, response.aMsg.type);