/* 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 Press screws

Cast Iron Cast Iron
Cold-Drawn Screw Cold-Drawn Screw

Pony heavy‑duty press screws are ideal for making veneering frames and are especially useful for deep‑reach surface clamping. The large, removable cast‑iron swivels make installation a breeze, and the threaded bushings fit easily into a one‑inch hole. 1116‑inch diameter, cold‑drawn steel screws with special, smoothly cut acme threads provide a tight hold.

Product # Length Screw Diameter Swivel Face Size
#6709 9" 1116" 1 38" × 1 58"
#6712 12" 1116" 1 38" × 1 58"
#6718 18" 1116" 1 38" × 1 58"

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