null
Image 1

M3x15mm Chicago Bolt and Screw for Haute42 G Series - Silver (6 Pak)

×
Price:
$3.45 (USD)
SKU
FA-CHICAGO-BOLT-M3X15-H42-GSERIES-S
Weight
1.25 Ounces
Availability
Ships within 1-2 business days
Shipping
Calculated at checkout
Max Qty
2 unit(s)

Why is there a quantity limit? Learn more. new-window-icon.png

Quantity:
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    Need replacement bolts for your Haute42 or would appreciate a different color to match your custom theme? Pick up a set of Chicago bolts with binding screw, sized for your model.

    M3 Size. Available in 3 lengths

    These Chicago Bolts are sized to fit specific models across the Haute42 family.  Each bolt has a corresponding binding screw. The screw will install into the bolt, binding the plexi at top and bottom of your Haute42 case.

    M3x10mm

    Haute Board Mini Haute Board B16 Haute Pad R16 
    Haute Board Mini (4-Pak) Haute Board B16 (6-Pak) Haute Pad R16 (9-Pak)

    M3x11mm

    Haute Pad S-Series Haute Pad T-Series
    Haute Pad S-Series (6 Pak)  Haute Pad T Series (9 Pak) 

    M3x15mm

    HautePad G-Series
    Haute Pad G-Series (6 Pak)

  • Product Reviews

    ×

    This product hasn't received any reviews yet. Be the first to review this product!

    Write A Review

×
×
// HTML Table Sorting let sortDirection = {}; // Keep track of the sort direction for each column function sortTableByColumn(columnIndex, type) { const table = document.getElementById("sortableTable"); let rows, switching, i, x, y, shouldSwitch; switching = true; // Set the sorting direction to ascending or flip it if already sorting this column let direction = sortDirection[columnIndex] === "asc" ? "desc" : "asc"; sortDirection[columnIndex] = direction; // Store the new direction while (switching) { switching = false; rows = table.rows; // Loop through all table rows (except the first, which contains table headers): for (i = 1; i < (rows.length - 1); i++) { shouldSwitch = false; // Get the two elements you want to compare, one from current row and one from the next: x = rows[i].getElementsByTagName("TD")[columnIndex]; y = rows[i + 1].getElementsByTagName("TD")[columnIndex]; let xContent = x.innerHTML.toLowerCase(); let yContent = y.innerHTML.toLowerCase(); // Type conversion for numeric sort if (type === 'number') { xContent = parseFloat(xContent) || 0; yContent = parseFloat(yContent) || 0; } // Check if the two rows should switch place: if (direction === "asc") { if (xContent > yContent) { shouldSwitch = true; break; } } else if (direction === "desc") { if (xContent < yContent) { shouldSwitch = true; break; } } } if (shouldSwitch) { // If a switch has been marked, make the switch and mark that a switch is done: rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; } } }