I've been searching for something like this for two years. I'm building a family tree with about 60 PLUS members. The code works great up to tip number 45 (0-45) then if I add one more, coded 46 or higher, I get the following
An error has accourred on this page.
Line: 123
Char: 3
Error: 'messages[...],0'is null of not an object
Code: 0
URL: (address of local page)
Do you want to continue running scripts on this page?
Corresponding code
117. // preload images that are to appear in tooltip
118. // from arrays above
119. if (document.images) {
120. var theImgs = new Array();
121. for (var i=0; i<messages.length; i++) {
122. theImgs[i] = new Image();
123. theImgs[i].src = messages[i][0];
124. }
125. }
How can I add more tips???
Thanks



Reply With Quote
Bookmarks