Get notified by email when this product becomes available
Have a question?
Description
Attributes:
Brand Name: SCT Performance
GTIN: 00811252020131
Extended Information:
Country of Origin:
Emissions : 4
Life Cycle Status: Available To Order
Packing Information:
Quantity of Each: 1
Package UOM: EA
Weight: 0 POUNDS
Recommendations
Product label:
Sold out
Product label:
Sold out
Product label:
Sold out
Product label:
Sold out
document.addEventListener('DOMContentLoaded', function() {
const form = document.getElementById('custom-search');
form.addEventListener('submit', function(event) {
event.preventDefault(); // Stop the form from submitting normally
const query = document.getElementById('custom-search-input').value; // Make sure your input has this ID
if (!query) return;
// Perform a fetch to your Shopify products endpoint or a custom API that you set up
fetch('/search?type=product&q=' + encodeURIComponent(query))
.then(response => response.json())
.then(data => {
// Handle the results here
console.log(data);
// Optionally, you can redirect or show results in a modal
})
.catch(error => {
console.error('Error:', error);
});
});
});