/* 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 Classic adjustable handscrew

Seasoned Hardwood Seasoned Hardwood
Cold-Drawn Screw Cold-Drawn Screw

Every Jorgensen handscrew we make is crafted to ensure maximum strength and durability. Seasoned, straight‑grain hard maple wood jaws marry with cold‑drawn steel spindles and nuts with special double‑lead threads. Together they create a handscrew clamp that holds tightly over broad areas, providing greater reach and a wider distribution of pressure than other clamps. The angle between the jaws can be adjusted to fit the work, allowing them to hold odd shapes easily. Our handscrew clamps are easy to apply and remove quickly, and they provide protection against marring of finished surfaces. Traditional seasoned hardwood handles are designed for comfort now and for years to come.

Product # Jaw Length Max Opening Reach
#3/0 6" 3" 2 34"
#0 8" 4 12" 3 78"
#1 10" 6" 5"
#2 12" 8" 6"

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