Jump to content

Help Add a search bar to my e-commerce Website?

Recommended Posts

Posted (edited)

Although you can add a Search Block, if you're new to Squarespace you may appreciate knowing that the search feature isn't very dependable and shouldn't be relied upon for product discovery. 

 

 

 

Edited by paul2009

Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥.
Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. 
Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links.
Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional.

  • 2 years later...
Posted (edited)

Adding a search bar to your e-commerce website can greatly enhance the user experience and make it easier for your customers to find what they are looking for.
 

JavaScript (script.js):

 
document.getElementById('searchForm').addEventListener('submit', function(event) {
  event.preventDefault(); // Prevent default form submission
  
  // Get the value from the search input
  var searchTerm = document.getElementById('searchInput').value;
  
  // Perform search operation, you can implement your own logic here
  
  console.log('Search term:', searchTerm);
  
  // For now, let's just redirect to a search results page with the search term as a query parameter
  window.location.href = 'search-results.html?q=' + encodeURIComponent(searchTerm);
});
 
Edited by ebizneeds

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.