/* 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 Classic light-duty C-clamp

Cast Iron Cast Iron
Zinc Plated Zinc Plated

Discover America’s most popular and complete line of light‑duty C‑clamps. The smoothly cut, acme‑threaded steel screw is zinc plated and protected with a black finish for lasting durability. And the clamp casting is made with ductile iron for strength before receiving a powder‑coated Pony‑orange finish. Available in a wide variety of sizes and clamping forces, all with full‑closing screws.

Product # Max Opening Clamping Force Reach
#1440-C 4" 1,200 lb. 3"
#1450-C 5" 1,200 lb. 3 14"
#1460-C 6" 1,200 lb. 3 12"
#1480-C 8" 1,200 lb. 4"
Product # Max Opening Clamping Force Reach
#2610 1" 400 lb. 1"
#2615 1 12" 400 lb. 1 12"
#2620 2" 400 lb. 1"
#2622 2 12" 600 lb. 1 38"
#2625 2 12" 600 lb. 2 12"
#2630 3" 800 lb. 2"
#2640 4" 800 lb. 3"
#2650 5" 1,000 lb. 3 14"
#2660 6" 1,000 lb. 3 12"
#2680 8" 1,000 lb. 4"

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