/* 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 Heavy-duty drop-forged C-clamp

Drop-Forged Steel Drop-Forged Steel
Zinc Plated Zinc Plated
Cold-Drawn Screw Cold-Drawn Screw

The toughest jobs demand a tougher clamp. Our strongest C‑clamps are crafted with heat‑treated, drop‑forged carbon steel frames, copper‑coated screws, handles, and swivels for heavy‑duty industrial service. The anvil is extra large and broached for flatness, and a black‑powder coating provides a smooth finish.

Product # Max Opening Clamping Force Depth of Throat
#402-D 2" 3,300 lb. 2"
#403-D 3" 3,500 lb. 2 38"
#404-D 4" 4,100 lb. 2 34"
#406-D 6" 5,400 lb. 3 58"
#408-D 8" 5,900 lb. 4 12"
#410-D 10" 6,200 lb. 5 38"
#412-D 12" 9,300 lb. 5 34"

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));