Rev 4386 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
$(function() {$('#courier-detail-by-awb').live('submit', function() {courierDetailByAwb("infopane", $(this).serialize());return false;});});function courierDetailByAwb(domId, params) {$.ajax({type : "POST",url : "/Support/courier-details!getAwbDetails",data : params,success : function(response) {$('#' + domId).html(response);//var activityTable = createActivityDataTable('activity');}});}