Subversion Repositories SmartDukaan

Rev

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

Rev 27800 Rev 27801
Line 349... Line 349...
349
 
349
 
350
function loadTagListingItemsDescriptionByBrand(domId, brands) {
350
function loadTagListingItemsDescriptionByBrand(domId, brands) {
351
	doPostAjaxRequestWithJsonHandler(context + '/getTagListingItemsByBrand',
351
	doPostAjaxRequestWithJsonHandler(context + '/getTagListingItemsByBrand',
352
			JSON.stringify(brands), function(response) {
352
			JSON.stringify(brands), function(response) {
353
				$('#' + domId).html(response);
353
				$('#' + domId).html(response);
-
 
354
				debugger;
354
				configureTagListingItemsDescriptionDropDown();
355
				configureTagListingItemsDescriptionDropDown();
355
			});
356
			});
356
 
357
 
357
}
358
}
358
 
359