Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim mobjdocument as object
Dim objelements as object
Dim objelement as object
With mobjWeb
Do
Set mobjDocument = mobjWeb.Document
If Err.Number <> 0 Then Exit Do
If mobjDocument Is Nothing Then Exit Do
'*****
'* META http-equiv="Refresh" BYPASS REDIRECTION
'*****
Set objElements = mobjDocument.getElementsByTagName("Meta")
If Err.Number <> 0 Then Exit Do
If objElements Is Nothing Then Exit Do
For Each objElement In objElements
If LCase(objElement.httpEquiv) = "refresh" Then
'* We are still busy
blnBusy = True
Exit Do
End If
Next
Exit do: loop