Subversion Repositories SmartDukaan

Rev

Rev 4390 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4386 anupam.sin 1
$(function() {
2
	$('#courier-detail-by-awb').live('submit', function() {
3
		courierDetailByAwb("infopane", $(this).serialize());
4
		return false;
5
	});
6
});
7
 
8
function courierDetailByAwb(domId, params) {
9
    $.ajax({
10
        type : "POST",
11
        url : "/Support/courier-details!getAwbDetails?" + params,
12
        data : params,
13
        success : function(response) {
14
            $('#' + domId).html(response);
15
            //var activityTable = createActivityDataTable('activity');
16
        }
17
    });
18
}