You can send your questions to my email to get faster answer in 24 hours (free).
Buy me a coffee

Hover button – Show different form

Demo: https://tuanphan-demo01.squarespace.com/hover-button-show-different-formv1?noredirect

Suppose you have 3 Button Blocks (left) – 3 Form Blocks (right).

When hovering over each button, will show the corresponding form on the right.

You can follow these steps:

#1. First, add 3 Button Blocks and 3 Form Blocks

hover-button-show-different-form-01-min

#2. Edit 3 Button Blocks, and use these URLs

  • #apple
  • #microsoft
  • #facebook

and make sure the option “Open Link in New Tab” is disabled.

hover-button-show-different-form-03-min

hover-button-show-different-form-04-min

hover-button-show-different-form-05-min

#3. Install Squarespace ID Finder to find the ID of Form Block

In my example, we will have:

  • Apple Form: #block-yui_3_17_2_1_1710206108509_9818
  • Microsoft Form: #block-yui_3_17_2_1_1710206108509_11216
  • Facebook: #block-yui_3_17_2_1_1710206108509_12346

hover-button-show-different-form-02-min

#4. Use code to Code Injection – Footer (or Page Header Code Injection)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
  // apple 
  $("#block-yui_3_17_2_1_1710206108509_9818").closest('.fe-block').addClass('apple');
  // microsoft
$("#block-yui_3_17_2_1_1710206108509_11216").closest('.fe-block').addClass('microsoft');
  // facebook
$("#block-yui_3_17_2_1_1710206108509_12346").closest('.fe-block').addClass('facebook');
  
  // Apple
  $('a[href="#apple"]').hover(function(){
    $(".apple").addClass("show");
    $('.fe-block:not(.apple)').removeClass('show');
    }
  );
// Microsoft
 $('a[href="#microsoft"]').hover(function(){
   $(".microsoft").addClass("show");
    $('.fe-block:not(.microsoft)').removeClass('show');
    }
  );
  // Facebook 
   $('a[href="#facebook"]').hover(function(){
   $(".facebook").addClass("show");
    $('.fe-block:not(.facebook)').removeClass('show');
    }
  );
});
</script>
<style>
.apple .form-block, .microsoft .form-block, .facebook .form-block {
    display: none;
}
  .show .form-block {
      display: block !important;
  }
  .show {
      z-index: 999999 !important;
  }
</style>

hover-button-show-different-form-12-min

#5. Explain code

hover-button-show-different-form-11-min

Ask me a question, free

If your site is private or in trial, just setup password and share url. See how to: https://beaverhero.com/squarespace-how-to/
Please check your email carefully. Recently I got a lot of questions with wrong emails.

If you haven't heard from me within 24 hours please check your junk/spam folder