2019-07-13 22:28:47 +00:00
< h1 > Welcome to < a href = " https://www.geocaching.com/geocache/GC7C642_esrom " > Esrom < / a > ! < / h1 >
< h2 > en :< br > Push the Start button below to get < span style = " color:red " > UVW < / span > < span style = " color:blue " > XYZ < / span > . You can find the geocache at N 52 & deg ; 40 . < span style = " color:red " > UVW < / span > ' E 004° 53.<span style="color:blue">XYZ</span> ' < / h2 >
< h2 > nl :< br > Druk op de Start knop hieronder om < span style = " color:red " > UVW < / span > < span style = " color:blue " > XYZ < / span > te vinden . Je kunt dan de geocache vinden op N 52 & deg ; 40 . < span style = " color:red " > UVW < / span > ' E 004° 53.<span style="color:blue">XYZ</span> ' < / h2 >
< div id = " buttonwrap " >
< input onclick = " start() " value = " Start " type = " button " class = " button " >
2019-07-14 09:56:20 +00:00
< p > Response status :< / p >
2019-07-13 22:28:47 +00:00
< p id = " response " > < / p >
< / div >
< a href = " http://www.geochecker.com/index.php?code=d9dbdc4542a4911a5f81a51bc9312a35&action=check&wp=47433743363432&name=4573726f6d " > en : check your coordinate on GeoChecker . com nl : controleer je co & ouml ; rdinaat op GeoChecker . < / a >
2019-07-14 09:56:20 +00:00
< br >
< br >
< input type = " button " onclick = " givehint() " value = " Click here for a hint! " id = " hintbutton " >
2019-07-13 22:28:47 +00:00
< div id = " givehint " style = " visibility:hidden " >
< p > en : Position yourself on the bridge . Watch carefully around to windows of houses , remember this is a nightly geocache . During daytime it is quite hard to see , but not impossible . After pushing the button , it takes 3
seconds to start . The whole process takes about 35 sec . During the process it cannot be stopped nor restarted . You can start it all over again as much as you like . In case you are really stuck , you could try to contact me via WhatsApp on number + 31 6 41633689 . Best of luck to you! < / p >
< p > nl : Ga op de brug staan . Kijk goed om je heen naar ramen van woningen en realiseer je dat dit een een nachtcache is . Overdag is het slecht te zien , maar niet onmogelijk . Na het indrukken van de knop duurt het 3 seconden
voordat het begint . Het hele proces duurt ongeveer 35 sec . Het proces kan niet gestopt of herstart worden . Je kunt het zo vaak starten als je wilt . Als het helemaal niet lukt zou je me kunnen proberen te bereiken via WhatsApp nummer 06 - 41633689 . Veel plezier! < / p >
< / div >
< script >
var responseP = document . getElementById ( " response " ) ;
var xhttp = new XMLHttpRequest ( ) ;
xhttp . onreadystatechange = function ( ) {
if ( this . readyState == 4 && this . status == 200 ) {
responseP . innerHTML = this . responseText ;
}
} ;
function start ( ) {
responseP . innerHTML = " Starting... " ;
xhttp . open ( " GET " , " /start " , true ) ;
xhttp . send ( ) ;
setTimeout ( function ( ) {
responseP . innerHTML = " Started. " ;
} , 3000 ) ;
}
function givehint ( ) {
document . getElementById ( " givehint " ) . style . visibility = " visible " ;
}
< / script >