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

Explore our high-quality clamps.

Now available at Canadian Woodworker.

Clamps

Classic pipe clamp fixture for 3/4-inch black pipe

Pony Classic pipe clamp fixture for 34-inch black pipe

Pipe clamp fixture for 1/2-inch black pipe

Pony Pipe clamp fixture for 12-inch black pipe

Professional pipe clamp fixture

Pony Professional pipe clamp fixture

Deep-reach pipe clamp fixture

Pony Deep-reach pipe clamp fixture

Hand Tools

15-Inch Low Friction Black Coated Coarse Handsaw

Jorgensen 15-Inch Low Friction Black Coated Coarse Handsaw

No.4 Smooth Plane

Jorgensen No.4 Smooth Plane

No.60-1/2 Low Angle Adjustable Mouth Block Plane

Jorgensen No.60-12 Low Angle Adjustable Mouth Block Plane

20-Inch Low Friction Black Coated Coarse Handsaw

Jorgensen 20-Inch Low Friction Black Coated Coarse Handsaw

Mini Block Plane

Jorgensen Mini Block Plane

Corner Easing Plane

Jorgensen Corner Easing Plane

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