Subversion Repositories SmartDukaan

Rev

Rev 36888 | Rev 36890 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21627 kshitij.so 1
$(function() {
36889 aman 2
 
27754 amit.gupta 3
	$(document).on('click', ".contact-us", function() {
22354 ashik.ali 4
		console.log("Contact Us Button Clicked...")
5
		contactUs("main-content");
6
	});
36889 aman 7
 
22661 amit.gupta 8
});
9
 
23343 ashik.ali 10
function contactUs(domId){
23500 ashik.ali 11
	doGetAjaxRequestHandler(context+"/contactUs", function(response){
12
		console.log("doGetAjaxRequest");
23343 ashik.ali 13
		$('#' + domId).html(response);
22245 ashik.ali 14
	});
36889 aman 15
}