Need help? Reach us at 800-849-3030 Live Support
My Shopping Cart
Your shopping cart is empty
'; } html = html +'
' if(categories_html) { html = html + '
Categories
'; html = html + categories_html; } if(suggestion_html) { html = html + '
Search Suggestions
'; html = html + suggestion_html; } // if(parts_html) { // html = html + '
Product Models
'; // html = html + parts_html; // } if(pages_html) { html = html + '
Pages
'; html = html + pages_html; } if(documents_html) { html = html + '
Product Documents
'; html = html + documents_html; } html = html + '
'; html = html + '
'; return html; }/*, standard: function(response) { // returns results html for standard results }*/ } }); $('.ui.two-column') .search({ type : 'category', fields: { categories : 'results', // array of categories (category view) categoryName : 'name', // name of category (category view) categoryResults : 'results', // array of results (category view) description : 'description', // result description image : 'image', // result image price : 'price', // result price results : 'results', // array of results (standard) title : 'title', // result title action : 'action', // "view more" object name actionText : 'text', // "view more" text actionURL : 'url' // "view more" url }, minCharacters : 2, apiSettings : { onResponse: function(search_results) { console.log(search_results); return search_results; }, url: 'searchsuggest_responsive.php?q={query}' }, templates : { /*escape: function(string) { // returns escaped string for injected results }, message: function(message, type) { // returns html for message with given message and type },*/ category: function(response) { // returns results html for category results //console.log(response.results.products.results); //alert('here'); //console.log(response); var products_html = get_products_html(response.results.products.results, true); var suggestion_html = get_suggestion_html(response.results.search_suggestions.results, true); var categories_html = get_categories_html(response.results.categories.results, true); var parts_html = get_parts_model_html(response.results.products_parts.results, true); var documents_html = get_documents_html(response.results.products_documents.results, true); var pages_html = get_pages_html(response.results.cms_pages.results, true); var html = ''; html = html + '
'; html = html + '
' if(products_html) { html = html + '
Products
'; html = html + products_html; } html = html + '
'; html = html +'
' if(categories_html) { html = html + '
Categories
'; html = html + categories_html; } if(suggestion_html) { html = html + '
Search Suggestions
'; html = html + suggestion_html; } // if(parts_html) { // html = html + '
Product Models
'; // html = html + parts_html; // } if(pages_html) { html = html + '
Pages
'; html = html + pages_html; } if(documents_html) { html = html + '
Product Documents
'; html = html + documents_html; } html = html + '
'; html = html + '
'; return html; }/*, standard: function(response) { // returns results html for standard results }*/ } }); $('.ui.three-column') .search({ type : 'category', fields: { categories : 'results', // array of categories (category view) categoryName : 'name', // name of category (category view) categoryResults : 'results', // array of results (category view) description : 'description', // result description image : 'image', // result image price : 'price', // result price results : 'results', // array of results (standard) title : 'title', // result title action : 'action', // "view more" object name actionText : 'text', // "view more" text actionURL : 'url' // "view more" url }, minCharacters : 2, apiSettings : { onResponse: function(search_results) { console.log(search_results); return search_results; }, url: 'searchsuggest_responsive.php?q={query}' }, templates : { /*escape: function(string) { // returns escaped string for injected results }, message: function(message, type) { // returns html for message with given message and type },*/ category: function(response) { // returns results html for category results //console.log(response.results.products.results); //alert('here'); //console.log(response); var products_html = get_products_html(response.results.products.results, true); var suggestion_html = get_suggestion_html(response.results.search_suggestions.results, true); var categories_html = get_categories_html(response.results.categories.results, true); var parts_html = get_parts_model_html(response.results.products_parts.results, true); var documents_html = get_documents_html(response.results.products_documents.results, true); var pages_html = get_pages_html(response.results.cms_pages.results, true); var html = ''; html = html + '
'; html = html + '
' if(products_html) { html = html + '
Products
'; html = html + products_html; } html = html + '
'; html = html +'
' if(categories_html) { html = html + '
Categories
'; html = html + categories_html; } if(pages_html) { html = html + '
Pages
'; html = html + pages_html; } if(documents_html) { html = html + '
Product Documents
'; html = html + documents_html; } html = html + '
'; html = html +'
' if(suggestion_html) { html = html + '
Search Suggestions
'; html = html + suggestion_html; } html = html + '
'; html = html + '
'; return html; }/*, standard: function(response) { // returns results html for standard results }*/ } }); // serach functions function get_products_html(products, return_empty=false){ var products_html = ''; if(products.length && Array.isArray(products)){ $.each(products, function(index, item) { if(index >= 10) { console.log(index); return false; } products_html = products_html + '
'; /*products_html = products_html + '
'; products_html = products_html + ''+item.image+''; products_html = products_html + '
';*/ products_html = products_html + '
'; products_html = products_html + '' + item.image + ''; products_html = products_html + '
'; products_html = products_html + '
'; products_html = products_html + ''+item.title+''; products_html = products_html + '

'+item.description+'

'; products_html = products_html + '
'; products_html = products_html + '
'; }); }else if(return_empty){ products_html = products_html + '

No Products matching your search criteria

'; } return products_html; } function get_suggestion_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + ''+item.title+''; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Search Suggestions matching your search criteria

'; } return suggestions_html; } function get_categories_html(categories, return_empty=false){ var categories_html = ''; if(categories.length && Array.isArray(categories)) { $.each(categories, function (index, item) { console.log(item.image); categories_html = categories_html + '
'; if (item.image != '') { categories_html = categories_html + '
'; categories_html = categories_html + '' + item.image + ''; categories_html = categories_html + '
'; } categories_html = categories_html + '
'; categories_html = categories_html + '' + item.title + ''; categories_html = categories_html + '
'; categories_html = categories_html + '
'; }); }else if(return_empty){ categories_html = categories_html + '

No Categories matching your search criteria

'; } return categories_html; } function get_parts_model_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + ''+item.title+''; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Products Parts matching your search criteria

'; } return suggestions_html; } function get_documents_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + ''+item.title+''; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Product Documents matching your search criteria

'; } return suggestions_html; } function get_pages_html(suggestions, return_empty=false){ var suggestions_html = ''; if(suggestions.length && Array.isArray(suggestions)){ $.each(suggestions, function(index, item) { if(index >= 10) { console.log(index); return false; } suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + ''+item.title+''; suggestions_html = suggestions_html + '
'; suggestions_html = suggestions_html + '
'; }); }else if(return_empty){ suggestions_html = suggestions_html + '

No Pages matching your search criteria

'; } return suggestions_html; } });
View Larger

Hayward TBH Series True Union Ball Valve
1/4" - 2"

          
Page 225
See Below  ▼
More Products from Hayward
  Share
Rate & Write a Review
'); //Add the fade layer to bottom of the body tag. $('#fade').css({'filter' : 'alpha(opacity=40)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=40)'}) is used to fix the IE Bug on fading transparencies return false; }); //Close Popups and Fade Layer $(document).on("click", "a.close, #fade, a.close2", function() { //When clicking on the close or fade layer... $('#fade , .popup_block').fadeOut(function() { $('#fade, a.close').remove(); //fade them both out }); return false; }); });

Overview

Hayward TBH Series True Union Ball Valve

PVC / EPDM

Array ( [status] => 1 [name] => Material [value] => PVC / EPDM [ef_sort] => 1 )
SELECT pef.products_extra_fields_status as status, pef.products_extra_fields_name as name, ptf.products_extra_fields_value as value,pefts.ef_sort FROM products_to_products_extra_fields ptf, products_extra_fields pef, products_extra_fields_tab_sorting pefts WHERE ptf.products_id IN (select products_id from products where products_parent_id = '30601' ) and pef.products_extra_fields_status = 1 and ptf.products_extra_fields_value '' and ptf.products_extra_fields_id = pef.products_extra_fields_id and ptf.products_extra_fields_value = pefts.ef_value and pefts.ef_products_id='30601' and (pef.languages_id='0' or pef.languages_id='1') AND ptf.products_extra_fields_id = '95' GROUP BY ptf.products_extra_fields_value ORDER BY pefts.ef_sort
Size (in) Connection Part # Price Buy
1/2 Soc. / Thr.
TBH1050ASTE0000
 $38.85 
3/4 Soc. / Thr.
TBH1075ASTE0000
 $47.93 
1 Soc. / Thr.
TBH1100ASTE0000
 $55.45 
1 1/4 Soc. / Thr.
TBH1125ASTE0000
 $73.51 
1 1/2 Soc. / Thr.
TBH1150ASTE0000
 $92.64 
2 Soc. / Thr.
TBH1200ASTE0000
 $121.35 
1/2 Socket
TBH1050A0SE0000
 $36.94 
3/4 Socket
TBH1075A0SE0000
 $45.54 
1 Socket
TBH1100A0SE0000
 $52.65 
1 1/4 Socket
TBH1125A0SE0000
 $69.92 
1 1/2 Socket
TBH1150A0SE0000
 $87.98 
2 Socket
TBH1200A0SE0000
 $115.28 
1/2 Flanged
TBH1050A0FE0000
 $59.64 
3/4 Flanged
TBH1075A0FE0000
 $75.26 
1 Flanged
TBH1100A0FE0000
 $91.82 
1 1/4 Flanged
TBH1125A0FE0000
 $107.48 
1 1/2 Flanged
TBH1150A0FE0000
 $131.24 
2 Flanged
TBH1200A0FE0000
 $201.92 
'; $("body .column-center").append($see_more); $appended_see_more = $("div#submit_below_note"); var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); $(window).scroll(function() { var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); }); }; }); function is_in_view (elem) { var docViewTop = $(window).scrollTop(); var docViewBottom = docViewTop + $(window).height(); var elemTop = $(elem).offset().top; var elemBottom = elemTop + $(elem).height(); //return ((docViewTop elemBottom)); // if element is below or above return (docViewBottom > elemBottom); // only if element is below };

PVC / FPM

Array ( [status] => 1 [name] => Material [value] => PVC / FPM [ef_sort] => 2 )
SELECT pef.products_extra_fields_status as status, pef.products_extra_fields_name as name, ptf.products_extra_fields_value as value,pefts.ef_sort FROM products_to_products_extra_fields ptf, products_extra_fields pef, products_extra_fields_tab_sorting pefts WHERE ptf.products_id IN (select products_id from products where products_parent_id = '30601' ) and pef.products_extra_fields_status = 1 and ptf.products_extra_fields_value '' and ptf.products_extra_fields_id = pef.products_extra_fields_id and ptf.products_extra_fields_value = pefts.ef_value and pefts.ef_products_id='30601' and (pef.languages_id='0' or pef.languages_id='1') AND ptf.products_extra_fields_id = '95' GROUP BY ptf.products_extra_fields_value ORDER BY pefts.ef_sort
Size (in) Connection Part # Price Buy
1/4 Socket
TBH1025A0SV0000
 $44.23 
1/4 Threaded
TBH1025A0TV0000
 $44.23 
3/8 Socket
TBH1037A0SV0000
 $44.23 
3/8 Threaded
TBH1037A0TV0000
 $44.23 
1/2 Soc. / Thr.
TBH1050ASTV0000
 $44.23 
3/4 Soc. / Thr.
TBH1075ASTV0000
 $52.19 
1 Soc. / Thr.
TBH1100ASTV0000
 $63.39 
1 1/4 Soc. / Thr.
TBH1125ASTV0000
 $84.09 
1 1/2 Soc. / Thr.
TBH1150ASTV0000
 $103.18 
2 Soc. / Thr.
TBH1200ASTV0000
 $135.17 
1/2 Socket
TBH1050A0SV0000
 $43.31 
3/4 Socket
TBH1075A0SV0000
 $51.15 
1 Socket
TBH1100A0SV0000
 $60.26 
1 1/4 Socket
TBH1125A0SV0000
 $79.83 
1 1/2 Socket
TBH1150A0SV0000
 $98.07 
2 Socket
TBH1200A0SV0000
 $128.43 
1/2 Flanged
TBH1050A0FV0000
 $66.36 
3/4 Flanged
TBH1075A0FV0000
 $82.18 
1 Flanged
TBH1100A0FV0000
 $101.80 
1 1/4 Flanged
TBH1125A0FV0000
 $123.83 
1 1/2 Flanged
TBH1150A0FV0000
 $140.16 
2 Flanged
TBH1200A0FV0000
 $220.27 
'; $("body .column-center").append($see_more); $appended_see_more = $("div#submit_below_note"); var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); $(window).scroll(function() { var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); }); }; }); function is_in_view (elem) { var docViewTop = $(window).scrollTop(); var docViewBottom = docViewTop + $(window).height(); var elemTop = $(elem).offset().top; var elemBottom = elemTop + $(elem).height(); //return ((docViewTop elemBottom)); // if element is below or above return (docViewBottom > elemBottom); // only if element is below };

CPVC / EPDM

Array ( [status] => 1 [name] => Material [value] => CPVC / EPDM [ef_sort] => 3 )
SELECT pef.products_extra_fields_status as status, pef.products_extra_fields_name as name, ptf.products_extra_fields_value as value,pefts.ef_sort FROM products_to_products_extra_fields ptf, products_extra_fields pef, products_extra_fields_tab_sorting pefts WHERE ptf.products_id IN (select products_id from products where products_parent_id = '30601' ) and pef.products_extra_fields_status = 1 and ptf.products_extra_fields_value '' and ptf.products_extra_fields_id = pef.products_extra_fields_id and ptf.products_extra_fields_value = pefts.ef_value and pefts.ef_products_id='30601' and (pef.languages_id='0' or pef.languages_id='1') AND ptf.products_extra_fields_id = '95' GROUP BY ptf.products_extra_fields_value ORDER BY pefts.ef_sort
Size (in) Connection Part # Price Buy
1/2 Soc. / Thr.
TBH2050ASTE0000
 $57.89 
3/4 Soc. / Thr.
TBH2075ASTE0000
 $72.86 
1 Soc. / Thr.
TBH2100ASTE0000
 $88.41 
1 1/4 Soc. / Thr.
TBH2125ASTE0000
 $123.07 
1 1/2 Soc. / Thr.
TBH2150ASTE0000
 $146.60 
2 Soc. / Thr.
TBH2200ASTE0000
 $202.19 
1/2 Socket
TBH2050A0SE0000
 $55.02 
3/4 Socket
TBH2075A0SE0000
 $69.30 
1 Socket
TBH2100A0SE0000
 $84.00 
1 1/4 Socket
TBH2125A0SE0000
 $116.93 
1 1/2 Socket
TBH2150A0SE0000
 $139.29 
2 Socket
TBH2200A0SE0000
 $192.12 
1/2 Flanged
TBH2050A0FE0000
 $80.64 
3/4 Flanged
TBH2075A0FE0000
 $95.98 
1 Flanged
TBH2100A0FE0000
 $126.43 
1 1/4 Flanged
TBH2125A0FE0000
 $142.74 
1 1/2 Flanged
TBH2150A0FE0000
 $176.16 
2 Flanged
TBH2200A0FE0000
 $317.19 
'; $("body .column-center").append($see_more); $appended_see_more = $("div#submit_below_note"); var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); $(window).scroll(function() { var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); }); }; }); function is_in_view (elem) { var docViewTop = $(window).scrollTop(); var docViewBottom = docViewTop + $(window).height(); var elemTop = $(elem).offset().top; var elemBottom = elemTop + $(elem).height(); //return ((docViewTop elemBottom)); // if element is below or above return (docViewBottom > elemBottom); // only if element is below };

CPVC / FPM

Array ( [status] => 1 [name] => Material [value] => CPVC / FPM [ef_sort] => 4 )
SELECT pef.products_extra_fields_status as status, pef.products_extra_fields_name as name, ptf.products_extra_fields_value as value,pefts.ef_sort FROM products_to_products_extra_fields ptf, products_extra_fields pef, products_extra_fields_tab_sorting pefts WHERE ptf.products_id IN (select products_id from products where products_parent_id = '30601' ) and pef.products_extra_fields_status = 1 and ptf.products_extra_fields_value '' and ptf.products_extra_fields_id = pef.products_extra_fields_id and ptf.products_extra_fields_value = pefts.ef_value and pefts.ef_products_id='30601' and (pef.languages_id='0' or pef.languages_id='1') AND ptf.products_extra_fields_id = '95' GROUP BY ptf.products_extra_fields_value ORDER BY pefts.ef_sort
Size (in) Connection Part # Price Buy
1/2 Soc. / Thr.
TBH2050ASTV0000
 $61.64 
3/4 Soc. / Thr.
TBH2075ASTV0000
 $76.59 
1 Soc. / Thr.
TBH2100ASTV0000
 $93.66 
1 1/4 Soc. / Thr.
TBH2125ASTV0000
 $129.54 
1 1/2 Soc. / Thr.
TBH2150ASTV0000
 $155.14 
2 Soc. / Thr.
TBH2200ASTV0000
 $212.96 
1/2 Socket
TBH2050A0SV0000
 $58.58 
3/4 Socket
TBH2075A0SV0000
 $72.77 
1 Socket
TBH2100A0SV0000
 $89.03 
1 1/4 Socket
TBH2125A0SV0000
 $123.10 
1 1/2 Socket
TBH2150A0SV0000
 $147.41 
2 Socket
TBH2200A0SV0000
 $202.31 
1/2 Flanged
TBH2050A0FV0000
 $86.85 
3/4 Flanged
TBH2075A0FV0000
 $102.90 
1 Flanged
TBH2100A0FV0000
 $136.44 
1 1/4 Flanged
TBH2125A0FV0000
 $162.91 
1 1/2 Flanged
TBH2150A0FV0000
 $190.39 
2 Flanged
TBH2200A0FV0000
 $359.05 
'; $("body .column-center").append($see_more); $appended_see_more = $("div#submit_below_note"); var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); $(window).scroll(function() { var displayed = (is_in_view($variant_buy_button)) ? "none" : "block"; $appended_see_more.css('display', displayed); }); }; }); function is_in_view (elem) { var docViewTop = $(window).scrollTop(); var docViewBottom = docViewTop + $(window).height(); var elemTop = $(elem).offset().top; var elemBottom = elemTop + $(elem).height(); //return ((docViewTop elemBottom)); // if element is below or above return (docViewBottom > elemBottom); // only if element is below };

Description

  Product Name Hayward TBH Series True Union Ball Valve
  Brand Name Hayward
  Page 225
A new generation of thermoplastic floating ball valves. The TBH Series features a low maintenance design with new patent pending System2™ Sealing Technology. Assisting users in protecting property and life, a standard integral lock-out feature secures onto the body of the valve. Actuator ready design with ISO 5211 pattern - on all sizes. Available in 1/4" - 2" / DN8 - DN50 in PVC and CPVC materials with either EPDM or FPM seals.

Features:
  • System2™ Sealing Technology provides longer cycle life
  • 250 PSI / 16 Bar, non-shock at 70°F/23°C full pressure rating
  • Consistent operating torque with adjustment-free design
  • Lockout/Tagout mechanism that secures directly to valve body for enhanced safety
  • Ergonomic handle for improved grip and comfort
  • ISO mounting flange simplifies actuation
  • Permanent markings, eliminates labels
  • Integral footpad for skid or panel mount
  • FPM or EPDM seals
  • Double O-Ring stem seals
  • Reversible PTFE seats - standard
  • Easy replacement for existing Hayward TB Series
  • NSF/ANSI 61 and NSF/ANSI 372 Listed

Options:
  • Pneumatic or Electric Actuators
  • Stem Extensions
  • Manual Limit Switch or Spring Return Handle