/* 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; }

Jorgensen Aluminum bar clamp

Anodized Aluminum Anodized Aluminum

Jorgensen aluminum bar clamps have an excellent strength‑to‑weight ratio, making these strong, lightweight bar clamps perfect for both commercial and DIY applications. The bars are crafted from an anodized, rust‑resistant aluminum, and their rectangular design creates a stable clamping surface for edge gluing. The tail‑stop’s trigger spring takes advantage of notches on the bar to lock into place.

Product # Max Opening Reach Clamping Force Bar
#3524 24" 1 58" 1,000 lb. 1 516" × 1316"
#3536 36" 1 58" 1,000 lb. 1 516" × 1316"
#3548 48" 1 58" 1,000 lb. 1 516" × 1316"
#3560 60" 1 58" 1,000 lb. 1 516" × 1316"
#3572 72" 1 58" 1,000 lb. 1 516" × 1316"

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