🔴 WWE SMACKDOWN Livestream: NEW YEARS REVOLUTION

9 months ago 222 ViewsGo Pro for $9.99


WWE SMACKDOWN Livestream: NEW YEARS REVOLUTION Tonight we have discussions LIVE as SMACKDOWN is on air. We will react in real time to matches and announcements during the broadcast. Be sure to join the chat and also join our discord for more wrestle talk! #wwe #smackdown #wrestling

Join The Trysun Tribe to get access to perks!
https://youtube.com/@AttitudeEraMikeWrestling/join

Want to get the most out of your Youtube videos?
Visit https://vidiq.com/Trysun to get the tools needed to research and create the best content. By clicking the link, you do support this channel, and most importantly BOOST your channel’s potential!

Join the free discord here: https://discord.gg/tgfdzExx

Feel free to follow me on Socials:
â—‹ Twitter: https://twitter.com/MikeTrysun
â—‹ IG: https://www.instagram.com/miketrysun/

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
document.addEventListener('click', function (event) { const isMemberToggle = event.target.matches('#toggleMembers'); const isPostToggle = event.target.matches('#togglePosts'); if (isMemberToggle) { membersSection.classList.remove('d-none'); postsSection.classList.add('d-none'); toggleMembers.classList.add('active'); togglePosts.classList.remove('active'); // Hide pagination links const paginationLinks = document.querySelector('.nav-links'); if (paginationLinks) { paginationLinks.style.display = 'none'; } } if (isPostToggle) { postsSection.classList.remove('d-none'); membersSection.classList.add('d-none'); togglePosts.classList.add('active'); toggleMembers.classList.remove('active'); // Show pagination links const paginationLinks = document.querySelector('.nav-links'); if (paginationLinks) { paginationLinks.style.display = 'block'; } } }); document.addEventListener('DOMContentLoaded', function() { // Toggle posts const togglePostsButton = document.querySelector('.toggle-posts'); const recentPostsContainer = document.getElementById('recent-posts-container'); if (togglePostsButton) { togglePostsButton.addEventListener('click', function() { if (recentPostsContainer.style.display === 'none' || recentPostsContainer.style.display === '') { recentPostsContainer.style.display = 'block'; // Show posts togglePostsButton.textContent = 'Hide Posts'; // Change button text } else { recentPostsContainer.style.display = 'none'; // Hide posts togglePostsButton.textContent = 'Recent Posts'; // Change button text } }); } // Toggle current post description const toggleDescriptionButton = document.querySelector('.toggle-description'); const currentPostDescription = document.querySelector('.current-post-description'); if (toggleDescriptionButton) { toggleDescriptionButton.addEventListener('click', function() { if (currentPostDescription.style.display === 'none' || currentPostDescription.style.display === '') { currentPostDescription.style.display = 'block'; // Show description toggleDescriptionButton.textContent = 'Hide Description'; // Change button text } else { currentPostDescription.style.display = 'none'; // Hide description toggleDescriptionButton.textContent = 'Description'; // Change button text } }); } }); document.addEventListener('DOMContentLoaded', function() { var toggleButton = document.getElementById('sidebar-toggle'); var sidebar = document.getElementById('sticky-sidebar'); // Set initial sidebar state (open by default) function setInitialState() { if (localStorage.getItem('sidebarState') === 'inactive') { sidebar.classList.add('active', 'sidebar-active'); // Open if previously inactive } else { sidebar.classList.remove('active', 'sidebar-active'); // Start closed } } setInitialState(); // Toggle sidebar on button click toggleButton.addEventListener('click', function() { sidebar.classList.toggle('active'); // Toggle the active class sidebar.classList.toggle('sidebar-active'); // Toggle the sidebar-active class // Update localStorage with current state localStorage.setItem('sidebarState', sidebar.classList.contains('active') ? 'inactive' : 'active'); }); // Function to check window size function checkWindowSize() { // If window is between 1500px and 1600px if (window.innerWidth >= 1500 && window.innerWidth < 1600) { // Close the sidebar if it's currently open (inactive) if (!sidebar.classList.contains('active')) { sidebar.classList.add('active', 'sidebar-active'); // Close sidebar localStorage.setItem('sidebarState', 'inactive'); } } else if (window.innerWidth >= 1600) { // If the window is resized back above 1600px, open the sidebar if it was previously inactive if (localStorage.getItem('sidebarState') === 'inactive') { sidebar.classList.remove('active', 'sidebar-active'); // Open sidebar } } } // Add resize event listener window.addEventListener('resize', checkWindowSize); }); function removeNotification(notificationId) { fetch(ajax_object.ajax_url, { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Requested-With': 'XMLHttpRequest' }, body: JSON.stringify({ action: 'remove_notification', id: notificationId }) }) .then(response => response.json()) .then(data => { if (data.success) { // Permanently remove the notification from the DOM const notificationItem = document.querySelector(`[data-notification-id="${notificationId}"]`); if (notificationItem) { notificationItem.remove(); } } }) .catch(error => console.error('Error:', error)); }