Safari sendAndLoad Bug Fix
Wednesday, December 3rd, 2003Just ran into this bug when using Flash’s sendAndLoad with Safari. When using the “POST” method in the Safari browser, the final character will be truncated. To work around this, add a junk variable at the start of the send object:
submitData = new LoadVars();
//avoid safari bug
submitData.junk = “zzz”;
