const searchForm = document.querySelector('#bitPropertyTabs')
function showForm() { searchForm.classList.add('visible') } setTimeout(showForm, 2000)
function openShortcodeTab(shortcodeTab, button) { var i; var x = document.getElementsByClassName("shortcodeTab"); for (i = 0; i < x.length; i++) { x[i].style.display = "none"; document.getElementById(shortcodeTab).classList.remove("active"); } var tabButtons = document.getElementsByClassName("property_tab_btn"); for (i = 0; i < tabButtons.length; i++) { tabButtons[i].classList.remove("active"); } document.getElementById(shortcodeTab).style.display = "block"; button.classList.add("active"); }