Demo: https://tuanphan-demo01.squarespace.com/click-text-show-social-links-v2?noredirect
Password: abc
#1. First, you add a Text Block, with these URLs.
Make sure the option “Open link in new tab” is disabled
- #link01
- #link02


and 2 Social Link Blocks below

#2. Install Squarespace ID Finder and find the ID of all blocks
In my example, we will have:
- Text Block: #block-yui_3_17_2_1_1711444764203_10895
- Social Link 01: #block-yui_3_17_2_1_1711444764203_6606
- Social Link 02: #block-yui_3_17_2_1_1711444764203_9219

#3. Use this 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(){
$("#block-yui_3_17_2_1_1711444764203_6606").addClass("show");
// Social Link 01
$('#block-yui_3_17_2_1_1711444764203_10895 a[href="#link01"]').click(function(){
$("#block-yui_3_17_2_1_1711444764203_6606").addClass("show");
$('div:not(#block-yui_3_17_2_1_1711444764203_6606)').removeClass('show');
}
);
// Social Link 02
$('#block-yui_3_17_2_1_1711444764203_10895 a[href="#link02"]').click(function(){
$("#block-yui_3_17_2_1_1711444764203_9219").addClass("show");
$('div:not(#block-yui_3_17_2_1_1711444764203_9219)').removeClass('show');
}
);
});
</script>
<style>
#block-yui_3_17_2_1_1711444764203_6606, #block-yui_3_17_2_1_1711444764203_9219 {
opacity: 0;
transition: all 0.1s ease;
}
.show {
opacity: 1 !important;
transition: all 0.1s ease;
}
</style>

#4. Explain code
