FLA Orthopedics Braces & Supports (2024)

Results 1-12 of 22FLA Orthopedics Braces & Supports (1)12
Sort by NameSort by Price

Refine Your Choices

Refine Your Choices

"; strCatHtml += "
    "; if (isMobile()) { strCatHtml = "

    Category

    "; strCatHtml += "
      "; } var cat_checked = false; for(var i = 0; i < categoryArr.length; i ++){ var strChecked = ""; if (cat_chk_id != "" && cat_chk_id == categoryArr[i].category_id) { strChecked = "checked"; cat_checked = true; } var cat_detail = categoryArr[i].category; var cat_count = " (" + categoryArr[i].count + ")"; var lineHtml = '
    • '; lineHtml += '

      ' + cat_detail + '' + cat_count + '

      '; lineHtml += ""; strCatHtml += lineHtml; } strCatHtml += ""; if(categoryArr.length > 0){ $("#category").html(strCatHtml); if (isMobile()) { if ( !cat_checked ) { $("#cat_list").slideToggle(); } $("#cat_content").click(function(){ $("#cat_list").slideToggle(); }); } } var strBrandHtml = "

      Brand

      "; strBrandHtml += "

        "; if (isMobile()) { strBrandHtml = "

        Brand

        "; strBrandHtml += "
          "; } var brn_checked = false; for(var i = 0; i < brandArr.length; i ++){ var strChecked = ""; if (brn_chk_id != "" && brn_chk_id == brandArr[i].category_id) { strChecked = "checked"; brn_checked = true; } var brand_detail = brandArr[i].brand; var brand_count = " (" + brandArr[i].count + ")"; var lineHtml = '
        • '; lineHtml += '

          ' + brand_detail + '' + brand_count + '

          '; lineHtml += ""; strBrandHtml += lineHtml; } strBrandHtml += ""; if(brandArr.length > 0){ $("#brand").html(strBrandHtml); if (isMobile()) { if ( !brn_checked ) { $("#brn_list").slideToggle(); } $("#brn_content").click(function(){ $("#brn_list").slideToggle(); }); } } var strPriceHtml = "

          Price

          "; strPriceHtml += "

            "; if (isMobile()) { strPriceHtml = "

            Price

            "; strPriceHtml += "
              "; } var price_checked = false; for(var i = 0; i < priceArr.length; i ++){ var price_group_idx = priceArr[i].groupIdx; var strChecked = ""; if (price_chk_id != "" && price_chk_id == price_group_idx) { strChecked = "checked"; price_checked = true; } var price_detail = priceArr[i].price; var price_count = " (" + priceArr[i].count + ")"; var lineHtml = '
            • '; lineHtml += '

              ' + price_detail + '' + price_count + '

              '; lineHtml += ""; strPriceHtml += lineHtml; } strPriceHtml += ""; if(priceArr.length > 0){ $("#price").html(strPriceHtml); if (isMobile()) { $("#price_range_wrapper").show(); if ( !price_checked && price_from_val1*1 == 0 && price_to_val1*1 == 0) { $("#price_list").slideToggle(); $("#price_range_wrapper").slideToggle(); } $("#price_content").click(function(){ $("#price_list").slideToggle(); $("#price_range_wrapper").slideToggle(); }); } } $("#null_term_test").attr("value", price_type1); $("#Item_PRICEtype").val(price_type1); $("#price_range_from").val(price_from_val1); $("#price_range_to").val(price_to_val1); $("#price_range_wrapper").show(); // In here, we send a post request. $(".priceClass").click(function(){ // price var chk = $(this).prop('checked'); $('.priceClass:checked').each(function() { $(this).prop("checked", false); }); if( chk == true ) { $(this).prop("checked", true); } $("#price_range_from").val(""); $("#price_range_to").val(""); postData(); }); $(".catClass").click(function(){ var chk = $(this).prop('checked'); $('.catClass:checked').each(function() { $(this).prop("checked", false); }); if( chk == true ) { $(this).prop("checked", true); } postData(); }); $(".brnClass").click(function(){ var chk = $(this).prop('checked'); $('.brnClass:checked').each(function() { $(this).prop("checked", false); }); if( chk == true ) { $(this).prop("checked", true); } postData(); }); }); function goPriceRange() { var price_from_val = $("#price_range_from").val() * 1; var price_to_val = $("#price_range_to").val() * 1; if ( price_from_val >=0 && price_to_val > 0 && price_to_val >= price_from_val ) { $('.priceClass:checked').each(function() { $(this).prop("checked", false); }); $("#Item_PRICEtype").val("BETWEEN"); $("#Item_PRICEfrom").val(price_from_val); $("#Item_PRICEto").val(price_to_val); postData(); } else { alert( "Please input a valid price value." ); } } function postData() { // category $("#Item_CATEGORY").html(""); $("#Item_CATEGORYtype").val("ALLOF"); var category_id = $("#category_id").val(); if(category_id != -1) { $("#Item_CATEGORY").append("

              "); } var cat_chk_id = null; var brn_chk_id = null; var price_chk_id = null; $('.catClass:checked').each(function() { $("#Item_CATEGORY").append("

              "); cat_chk_id = $(this).val(); }); $('.brnClass:checked').each(function() { $("#Item_CATEGORY").append("

              "); brn_chk_id = $(this).val(); }); var catObj = document.getElementById("Item_CATEGORY"); for (var i=0; i

              0) { // search term if ( item_name != null && item_name != "" && item_name != " " ) { $("#Item_NAMEtype").append(""); $("#Item_NAME").attr("value", item_name); } else { $("#Item_NAMEtype").val("ANY"); } if (category_id != -1) { setCookie("category", category_id); setCookie("search_term", ""); }else{ if(item_name != "" && item_name != " " && item_name != null) { setCookie("search_term", item_name); setCookie("category", ""); } } if( cat_chk_id != null ){ setCookie("cat_chk_id", cat_chk_id); }else{ setCookie("cat_chk_id", ""); } if( brn_chk_id != null ){ setCookie("brn_chk_id", brn_chk_id); }else{ setCookie("brn_chk_id", ""); } if( price_chk_id != null ){ setCookie("price_chk_id", price_chk_id); }else{ setCookie("price_chk_id", ""); } if ( price_from_val >=0 && price_to_val > 0 && price_to_val >= price_from_val ) { setCookie("price_from_val", price_from_val); setCookie("price_to_val", price_to_val); } else { setCookie("price_from_val", ""); setCookie("price_to_val", ""); } setCookie("price_type", chk_price_type); $("#main_form").submit(); }else{ $("#alert_panel").text("No result!"); $("#alert_panel").show(); } }); } function setCookie(cname, cvalue) { document.cookie = cname + "=" + cvalue + ";path=/"; } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i tbody > tr").length > 1 ){ $("#contTbl > tbody > tr").eq(0).remove(); $("#contTbl > tbody > tr").eq(0).remove(); } });
Results 1-12 of 22FLA Orthopedics Braces & Supports (30)12
Sort by NameSort by Price
FLA Orthopedics Braces & Supports (2024)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Tyson Zemlak

Last Updated:

Views: 6133

Rating: 4.2 / 5 (43 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Tyson Zemlak

Birthday: 1992-03-17

Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013

Phone: +441678032891

Job: Community-Services Orchestrator

Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography

Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.