/* REVIEW A CLAMP RECEIVE A CLAMP */ /* --- */ /* Disable Gravity Form submission without valid coupon code */ .gform_wrapper input[type="submit"].coupon-code-disabled{ opacity: 0; color: #fff !important; background: #000 !important; pointer-events: none; } .gform_wrapper #gf_coupon_button.coupon-code-disabled{ opacity: 0.5; pointer-events: none; }

Pony Carriage C-clamp

Cast Iron Cast Iron
Zinc Plated Zinc Plated
Cold-Drawn Screw Cold-Drawn Screw

Pony’s heavy‑duty carriage C‑clamps are the most universally used general‑purpose C‑clamps for regular‑duty industrial service. Clamp frames are liberally proportioned and heat treated for maximum strength, and ribbed to resist side strain. Longer frame hubs combined with a copper‑coated screw with special, smoothly cut acme square threads ensure lasting durability. Black‑powder‑coated castings.

Product # Max Opening Clamping Force Depth of Throat
#102 2 12" 1,400 lb. 1 34"
#103 3" 1,800 lb. 1 78"
#104 4" 2,400 lb. 2 18"
#105 5" 2,400 lb. 2 12"
#106 6" 2,400 lb. 2 34"
#108 8" 2,400 lb. 3 14"
#110 10" 2,400 lb. 3 58"
#112 12" 2,400 lb. 3 58"

Videos

Ratings and Reviews

/* REVIEW A CLAMP RECEIVE A CLAMP */ /* --- */ /* Disable Gravity Form submission without valid coupon code */ (function($){ $(function(){ // Elements var couponFormElement = 'form#gform_3'; var couponCodeField = '.gfield#field_3_3'; var couponCodeInput = '.gfield #gf_coupon_code_3'; var couponCodeInputValues = '.gfield #gf_coupon_codes_3'; var couponCodeValidationMessage = '.gfield #validation_message_3_3'; // Promo Code Form var promoForm = $(couponFormElement); // Check form if( promoForm[0] ){ // Check promo code is applied var promoCodeInterval = setInterval(function(){ // NO COUPON CODE if( $(couponCodeInputValues).val() === '' ){ // Submit Button $(couponFormElement + ' input[type="submit"]').addClass('coupon-code-disabled'); // Coupon Code Button $('#gf_coupon_button').removeClass('coupon-code-disabled'); } // HAS COUPON CODE if( $(couponCodeInputValues).val() !== '' ){ // Submit Button $(couponFormElement + ' input[type="submit"]').removeClass('coupon-code-disabled'); // Field Errors $(couponCodeField).removeClass('gfield_error'); // Display Coupon Code $(couponCodeInput).val( $(couponCodeInputValues).val() ); // Validation Message $(couponCodeValidationMessage).remove(); // Coupon Code Button $('#gf_coupon_button').addClass('coupon-code-disabled'); } }, 500 ); } }); }(jQuery));