Subversion Repositories SmartDukaan

Rev

Rev 23343 | Rev 27754 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23343 Rev 23500
Line 6... Line 6...
6
	});
6
	});
7
	
7
	
8
});
8
});
9
 
9
 
10
function contactUs(domId){
10
function contactUs(domId){
11
	doAjaxRequestHandler(context+"/contactUs", "GET", function(response){
11
	doGetAjaxRequestHandler(context+"/contactUs", function(response){
-
 
12
		console.log("doGetAjaxRequest");
12
		$('#' + domId).html(response);
13
		$('#' + domId).html(response);
13
	});
14
	});
14
}
15
}
15
16