• Priority: 0
  • Status: Waiting on customer
  • Theme: Alysum
  • Assigned To: Fred
  • Private: No
  • Open Date: 21.07.23, 16:07
  • Opened by: Pianeta Affari

Ticket #24848 - Close cart pop up after 5 seconds

Hello, my client would like the cart pop up to close automatically after 5 seconds from when it was opened. Could you please have a look and let me know if possible?

Attachments:

Comments

Fred 24 Jul 2023, 20:12

Try following JS code:

setTimeout(() => {
        const popup = document.querySelector('.pkpopup');
        popup.remove();
}, 5000);