what's up with wiki?
Posted: Wed Jul 02, 2008 8:46 pm
i tried to go to wiki yesterday and noticed that there IS no wiki, ne one know what happened or if they changed the address ?
A short text to describe your forum
https://www.ns4ee.com/forum_archive/
https://www.ns4ee.com/forum_archive/viewtopic.php?f=46&t=1000766
lol, ty vaga and kim, must be my ancient compVagaStorm wrote:Reding first post scared the crap out of me. :p
Hmm... *looks left* ... *looks right* ... hmm no fatzo,number one [censored] wrote:lol, ty vaga and kim, must be my ancient compVagaStorm wrote:Reding first post scared the crap out of me. :p
These errors are produced in IE when the javascript tries to change the page before it has completed rendering. There are 3 common ways to solve this problem:
move all the javascript to the <head> of the document and call a makeMap() function which initializes the Google Map in the onload handler (in the <body> tag, <body onload="makeMap();">). The onload handler is executed after the page finishes loading. thread1 thread2
put all the javascript at the end of the <body> (just before the </body> tag) see this message.
a variation of #1, use a setTimeout to delay the processing of the map code until the page has finished rendering. see this message.
(variation of 1) use window.onload. Allows multiple onload handlers, see Doug Henderson's page at multiple onload handlers. This is the way that was used to fix the operation aborted error on the Get_Lon_Lat page here.