Written by

Technical Architect at OPTIMUS IT INFRA
Question prashanth ponugoti · Feb 28, 2022

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

Comments

Dmitry Maslennikov · Feb 28, 2022

Javascript

setTimeout(function() { document.location = document.location }, 5 * 60 * 1000)
0
shakthighan p  Feb 28, 2022 to Dmitry Maslennikov

Thanks Dmirty , let me try

Thanks for your immediate help.

0