I'm creating a webapge using Google App Script. After a button click I'm trying to reload a page and none of the below work,
- window.location.href = window.location.href
- window.location.reload(true)
They are redirecting to a blank page
I'm creating a webapge using Google App Script. After a button click I'm trying to reload a page and none of the below work,
They are redirecting to a blank page
The below snippet worked
var url = 'myURL'
window.top.location = url