Subversion Repositories SmartDukaan

Rev

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

Rev 31172 Rev 31183
Line 5... Line 5...
5
		loadHygiene("main-content");
5
		loadHygiene("main-content");
6
	});
6
	});
7
 
7
 
8
 
8
 
9
	$(document).on('click', "#hygiene-fofo-search", function() {
9
	$(document).on('click', "#hygiene-fofo-search", function() {
10
		var fofoId = partnerId;
10
		var fofoId = $('#partnerId').val();
11
		doGetAjaxRequestHandler(context + "/getHygieneData?fofoId=" + fofoId, function(response) {
11
		doGetAjaxRequestHandler(context + "/getHygieneData?fofoId=" + fofoId, function(response) {
12
			$('#' + "main-content").html(response);
12
			$('#' + "main-content").html(response);
13
		});
13
		});
14
	});
14
	});
15
 
15