null
Image 1

M4x10mm Screw and Nut (Set of 4)

×
Rating
Price:
$1.25 (USD)
SKU
FA-SCREW-M4X10-S
Weight
0.24 Ounces
Availability
Ships within 2-3 business days
Shipping
Calculated at checkout
Current Stock
18
Quantity:
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    While the Sanwa JLF-SS-Kit is perfect for attaching a bare Sanwa JLF 8Y-TP to a flat JLF-P1 Mounting Plate or S-shaped JLF-P1-S Mounting Plate, it doesn't mount the plate to an actual case.

    The 4-piece flat head, phillips drive M4x10mm screw and hex nut set allows you to mount a Sanwa JLF mounting plate to your commercial or custom joystick case.

    Made of stainless steel with a 0.70 thread size, plus accompanying 3.2mm thick hex nut will keep your joystick mounted securely to your case.

  • Product Reviews

    ×

    Write A Review

    1. Work as advertised

      What else can I say? They just work. on Oct 13th 2020

    2. good

      awesome on Oct 7th 2020

  • Warranty Information

    -

  • Find Similar Products by Category

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