$(function(){$("#btnSaveRequestCatalogues").click(function(){$.mobile.loading("show");var n=[];return $.each($(".requestCataloguesCatalogue:checked"),function(){$(this).is(":checked")&&n.push({CatalogueId:$(this).attr("name").replace("catalogue_","")})}),$.each($(".requestCataloguesBrand:checked"),function(){$(this).is(":checked")&&n.push({BrandId:$(this).attr("id")})}),n=JSON.stringify({requestCatalogues:n}),$.ajax({contentType:"application/json; charset=utf-8",dataType:"json",responseType:"json",type:"POST",url:"/m/RequestCatalogues/SaveRequestCatalogues",data:n}).done(function(n){n.result?handleFeedback(n.message,"Success"):handleFeedback("Catalogue settings could not be saved!","Error");$.mobile.loading("hide")}),!1})})