null
Image 1

Seimitsu Solid Color Red LB-30 Mini Balltop

×
Price:
$2.75 (USD)
SKU
SEIMITSU-LB-30-R
Weight
0.60 Ounces
Availability
Ships within 1-2 business days
Shipping
Calculated at checkout
Max Qty
4 unit(s)

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

Current Stock
3
Quantity:
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    Color customize your Seimitsu joystick! The Seimitsu 30mm solid-color balltop is compatible with all Seimitsu LS-series joysticks, plus Sanwa JLF series joysticks.

    Smaller than Sanwa LB-35 or Seimitsu LB-39. Backpack Charm Friendly

    Seimitsu LB-30 comparison with LB-35, LB-45 balltops

    At just 30mm, the Seimitsu is 5mm smaller than the standard Sanwa 35mm balltop.  It is also lighter, too.  For smaller hands, or those who might like to accessorize with the Seimitsu Balltop Backpack Charm, you may just come to enjoy this adorably smaller model.

  • Product Reviews

    ×

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

    Write A Review

  • 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; } } }