Hey Everyone,
After scouring the web for a while with no resolution it seems it's time to ask someone for help.
So I've got this javascript code for a messaging system and here's what happens:
- User clicks a link to open a message
- A DIV is created using document.createElement()
- The DIV gets positioned and filled with its contents
- User reads contents
- User clicks the close button to close the DIV (the div is "closed" by using the removeChild() function)
Everything is peachy in Firefox, but if I try to open another message starting at step 1, Safari ruins my day by giving me "DOM Exception 8" and steps 2-5 don't happen.
I think this bug is exclusive to Safari because it seemed like everything on google involving DOM Exception 8 was Safari related...I don't even know what DOM EXception 8 IS!
Any ideas how I can get around this? I haven't even bother trying IE yet
Thanks
Steve