Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
30003 tejbeer 1
$(function() {
2
	$(document).on('click', ".partner-brandwise-detail", function() {
3
		loadDetails("main-content");
4
	});
5
 
6
});
7
 
8
 
9
function loadDetails(domId) {
10
 
11
	doGetAjaxRequestHandler(context + "/getPartnersBrandWiseDetail",
12
		function(response) {
13
			$('#' + domId).html(response);
14
		});
15
}
16