The Park Tool Fold-Up Hex Wrench Set combines all the popular hex wrench sizes into one convenient fold-up tool, eliminating the need for a mess of loose tools.
Read more..
Price Matching
Easy Returns
Fast Shipping
Information
Includes 1.5mm, 2mm, 2.5mm, 3mm, 4mm, 5mm, and 6mm hex wrenches
Wrenches made from industrial tool steel, through hardened and tempered for long life
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}