YPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Buy CMC Food Grade, CMC Food Grade Suppliers, Manufacturers, Traders
") .appendTo(ul); }; $("#headdercontent_homsearchlnkbtn").on('click', function (e) { if ($("#headdercontent_txtSearchbox").val() == '') { return false; } }); }); $.ajax({ type: "GET", url: "/style/js/homemenu.xml", dataType: "xml", success: function (xml) { var ul_main = $(""); $(xml).find("Menu").each(function () { if ($(this).children().length) { var ulSub = $(""); var clsname = 'cmncls'; switch ($(this).attr("text")) { case 'Chemicals': clsname = 'chemcls'; break; case 'Equipments': clsname = 'eqcls'; break; } $(this).children().each(function () { ulSub.append("
  • " + $(this).attr("text") + "
  • "); }); var li = $(""); ul_main.append(li.append(ulSub)); } else ul_main.append(""); }); $("#menu_wrapper").append(ul_main); var divs = $(".chemcls"); for (var i = 0; i "); } var divss = $(".eqcls"); for (var j = 0; j "); } } }); function signup() { $('#eliteModal').modal('show'); $("#indcountry").val($("#indcountry option:first").val()); //$("#lmsgbox").html(''); $("#rmsgbox").html(''); $("#rmsgbox1").css("display", "none"); $("#lemail").val(''); $("#password").val(''); $("#indfname").val(''); $("#indlname").val(''); $("#indphone").val(''); $("#indremail").val(''); $("#indrpassword").val(''); // $("#forgot").hide(); $("#iagree").prop("checked", false); $("#agree").prop("checked", false); //$('#registerModal').modal(); $('#' + 'headdercontent_registerModal').modal('hide'); $('#accept_decline').modal('hide'); //$('#signInModal').modal('hide'); $('#' + 'headdercontent_signInModal').modal('hide'); } function log() { $("#rmsgbox").html(''); //$("#lmsgbox").html(''); $("#lemail").val(''); $("#password").val(''); $("#indfname").val(''); $("#indlname").val(''); $("#indphone").val(''); $("#indremail").val(''); $("#indrpassword").val(''); $("#iagree").prop("checked", false); $("#agree").prop("checked", false); //$('#signInModal').modal('show'); $('#' + 'headdercontent_signInModal').modal('show'); $('#forgot').hide(); $('#login').show(); //$('#registerModal').modal('hide'); $('#' + 'headdercontent_registerModal').modal('hide'); $('#accept_decline').modal('hide'); $('#txtLogEmail').val(''); $('#txtlogPassword').val(''); $("#divlogError").html(''); $("#divlogError").css("display", "none"); } function forgotp() { //$("#lmsgbox").html(''); $("#fmsgbox").html(''); $("#fmsgbox").css("display", "none"); $("#indfname").val(''); $("#indlname").val(''); $("#indphone").val(''); $("#indremail").val(''); $("#indrpassword").val(''); $("#femail").val(''); $('#forgot').show(); $('#login').hide(); $("#iagree").prop("checked", false); $("#agree").prop("checked", false); //$('#registerModal').hide(); $('#' + 'headdercontent_registerModal').modal('hide'); $('#accept_decline').modal('hide'); // $('#signInModal').modal('show'); $('#' + 'headdercontent_signInModal').modal('show'); } $.getJSON("/style/js/getcountrylist.json", function (obj) { $("#indcountry").empty().append(''); $.each(obj.countrylist, function (key, value) { $("#indcountry").append($("").val (value.mappingID).html(value.name)); }); });






    '; bulkenqq += ''; bulkenqq += '
    '; bulkenqq += '
    '; bulkenqq += '
    '; $('#divbulkenq').html(bulkenqq); $('#myModalbulk').modal('show'); } function savegeneralenq() { var gerr = parseInt(0); if ($('#befullname').val() == '') { gerr++; $('#spnerrormsg').text('Enter Name'); $('#spnerrormsg').show(); $('#spnerrormsg').css('color', 'red'); return false; } if ($('#becmpname').val() == '') { gerr++; $('#spnerrormsg').text('Enter Company Name'); $('#spnerrormsg').show(); $('#spnerrormsg').css('color', 'red'); return false; } if ($('#beEmailid').val() == '') { gerr++; $('#spnerrormsg').text('Enter Email ID'); $('#spnerrormsg').show(); $('#spnerrormsg').css('color', 'red'); return false; } if ($('#beEmailid').val() != "") { var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (!filter.test($('#beEmailid').val())) { gerr++; $('#spnerrormsg').text('Enter Valid Email ID'); $('#spnerrormsg').show(); $('#spnerrormsg').css('color', 'red'); return false; } } if ($('#bePhone').val() == '') { gerr++; $('#spnerrormsg').text('Enter Phone Number'); $('#spnerrormsg').show(); $('#spnerrormsg').css('color', 'red'); return false; } if ($('#bemessage').val() == '') { gerr++; $('#spnerrormsg').text('Enter Requirements'); $('#spnerrormsg').show(); $('#spnerrormsg').css('color', 'red'); return false; } if (gerr == 0) { var descval = JSON.stringify($('#bemessage').val()); descval = escape($('#bemessage').val()); $.ajax ({ type: "POST", url: "/WocAdmin.asmx/AddWocPromotions", data: "{'pfirstname':'" + $('#befullname').val() + "','pcompanyname':'" + $('#becmpname').val() + "','pemailid':'" + $('#beEmailid').val() + "','pphone':'" + $('#bePhone').val() + "','pmessage':'" + descval + "','section':'" + "directenquiry" + "','cmprefid':'" + "" + "','productname':'" + $('#lblproduct').text() + "'}", contentType: "application/json; charset=utf-8", dataType: "json", success: function (msg) { $('#spnerrormsg').css('color', 'green'); $('#spnerrormsg').text('Thank You ! Our team will contact you soon.'); $('#spnerrormsg').show(); beclearvaldmsgs(); }, error: function (msg) { //$('#pgmsg').text('Thank You ! Our team will contact you soon.'); //$('#pgmsg').show(); clearalllfields(); } }); } } function beclearvaldmsg() { $('#spnerrormsg').hide(); $('#spnerrormsg').text(''); } function beclearvaldmsgs() { // $('#spnerrormsg').hide(); $('#spnerrormsg').text(''); $('#befullname').val(''); $('#becmpname').val(''); $('#beEmailid').val(''); $('#bePhone').val(''); $('#bemessage').val(''); } function phonenumbervalid(e) { var keyCode = e.keyCode || e.which; //Regex for Valid Characters i.e. Alphabets and Numbers. var regex = /^[0-9-+() ]+$/; //Validate TextBox value against the Regex. var isValid = regex.test(String.fromCharCode(keyCode)); if (!isValid) { e.preventDefault(); } return isValid; } function popUpClosepb() { $('#divbulkenq').html(''); $('#footer_sticky').remove(); $('#myModalbulk').modal('hide'); }
    You Are In: Home / Chemical Categories / CMC Food Grade Suppliers

    CMC Food Grade Suppliers

    Product Name: Sodium Carboxymethyl Cellulose (CMC-Na, CMC) Synonym Name: Sodium salt of carboxymethyl ether of cellulose; CMC; Na CMC; cellulose gum; sodium CMC; Carboxymethyl cellulose sodium CAS No.: 9004-32-4 INS: 466 CMC is widely used in Food Industry, including frozen desserts, protein food, beverages, icings, dressings, instant noodles, etc. Specification Appearance: White or slightly yellow fine powder Purity: ?99.5% Viscosity (2%, 25?): ?25mPa.s Degree of Substitution: 0.20 to 1.5 PH Value: 6.0 to 8.5 Moisture: ?10% We can produce CMC exactly according to customers' specification and special usage. Properties 1. Thickening: CMC can produce high viscosity at low concentration. It also acts as lubricant. 2. Water retention: CMC is a water binder, helps increase shelf life of food. 3. Suspending aid: CMC acts as emulsifier and suspension stabilizer, particularly in icings to control ice crystal size. 4. Film forming: CMC can produce a film on the surface of fried food, eg. instant noodle, and prevent absorption of excessive vegetable oil. 5. Chemical stability: CMC is resistant to heat, light, mold and commonly used chemicals. 6. Physiologically inert: CMC as a food additive has no caloric value and can not be metabolized. Package 25kg kraft paper bag, or other packing as clients request. Storage: In a cool, dry, clean, ventilated environment.... More

    Golden Grain Group Limited

    Block A, Futai Plaza, No. 18 Hongkong Road, Qingdao, China, qingdao, china

    china


    www.worldofchemicals.com uses cookies to ensure that we give you the best experience on our website. By using this site, you agree to our Privacy Policy and our Terms of Use. X
    cmc food grade