Suggestion

Suggestion is psychological technique used to guide thoughts, feelings, or behaviors, often employed in hypnosis and mentalism. In magic, suggestion can create illusions of mind control or prediction, adding a layer of mystery to the performance.

 

Through subtle suggestion, the mentalist seemed to predict the spectator’s choice.

🤯 mentalism glossary 🤯

var accordions = document.getElementsByClassName("accordion"); var i; for (i = 0; i < accordions.length; i++) { accordions[i].addEventListener("click", function() { this.classList.toggle("active"); var panel = this.nextElementSibling; if (panel.style.maxHeight){ panel.style.maxHeight = null; } else { panel.style.maxHeight = panel.scrollHeight + "px"; // Adjust maxHeight of all ancestor panels var parentPanel = panel.parentElement; while (parentPanel.className === "panel") { parentPanel.style.maxHeight = parentPanel.scrollHeight + panel.scrollHeight + "px"; parentPanel = parentPanel.parentElement; } } }); }