How to refresh my CSP page and reload data every 5 min
Hi Community,
I have created CSP page should show my Queue status.
Now I need to refresh this page every 5 min.(same like live score website) to reload new queue status.
Any tag in CSP will do this auto refresh?
Thanks,
Prashanth
Product version: IRIS 2022.1
Javascript
setTimeout(function() { document.location = document.location }, 5 * 60 * 1000)
Thanks Dmirty , let me try
Thanks for your immediate help.