Subversion Repositories SmartDukaan

Rev

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

Rev 27489 Rev 27754
Line 1... Line 1...
1
$(function() {
1
$(function() {
2
 
2
 
3
	$(".hygiene").live('click', function() {
3
	$(document).on('click', ".hygiene", function() {
4
 
4
 
5
		loadHygiene("main-content");
5
		loadHygiene("main-content");
6
	});
6
	});
7
 
7
 
8
 
8
 
9
	$("#hygiene-fofo-search").live('click', function() {
9
	$(document).on('click', "#hygiene-fofo-search", function() {
10
		var fofoId = partnerId;
10
		var fofoId = partnerId;
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
	});