Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   HTML (http://www.velocityreviews.com/forums/f31-html.html)
-   -   Text after 2 tables actually appears between 2 tables ! (http://www.velocityreviews.com/forums/t154490-text-after-2-tables-actually-appears-between-2-tables.html)

Peter Bassett 08-15-2003 05:18 PM

Text after 2 tables actually appears between 2 tables !
 
My webpage displays 2 tables that list my high school class's in-state and
out-of-state alumni - it's at
http://www.solotraveller.com/wwhs1981/wherewelive.html

I have 2 arrays - alums in-state and alums out-of-state.

I have a function to lay out a table, given an array.

I call this function twice - with the in-state array, then with the out-of-
state array. I expect these 2 tables to appear sequentially.

Then I have a mailto: tag for people to notify me when they move. This is
supposed to go at the very bottom of the page, after the 2 tables.

BUT, the HTML renders as Table 1, then the mailto: (!!!!), then finally
Table 2!

Unfortunately I can't see the actual HTML when I View Source, so I'm hoping
the group can help me find the error of my ways. I am pretty sure I have
closed out the <TABLE> tag, etc.


Thanks!
Pete

Beauregard T. Shagnasty 08-15-2003 06:03 PM

Re: Text after 2 tables actually appears between 2 tables !
 
Peter Bassett pounced upon this pigeonhole and pronounced:
> My webpage displays 2 tables that list my high school class's in-state and
> out-of-state alumni - it's at
> http://www.solotraveller.com/wwhs1981/wherewelive.html


I get a blank white page.


> I have 2 arrays - alums in-state and alums out-of-state.
>
> I have a function to lay out a table, given an array.
>
> I call this function twice - with the in-state array, then with the out-of-
> state array. I expect these 2 tables to appear sequentially.
>
> Then I have a mailto: tag for people to notify me when they move. This is
> supposed to go at the very bottom of the page, after the 2 tables.
>
> BUT, the HTML renders as Table 1, then the mailto: (!!!!), then finally
> Table 2!
>
> Unfortunately I can't see the actual HTML when I View Source, so I'm hoping
> the group can help me find the error of my ways. I am pretty sure I have
> closed out the <TABLE> tag, etc.


Oh. View source... the whole page is JavaScript. Sorry, my browser
doesn't do JavaScript... :-( Someone else might have an answer.

--
-bts
-This space intentionally left blank.

Steven 08-15-2003 06:31 PM

Re: Text after 2 tables actually appears between 2 tables !
 
Peter Bassett wrote:
> My webpage displays 2 tables that list my high school class's
> in-state and out-of-state alumni - it's at
> http://www.solotraveller.com/wwhs1981/wherewelive.html
>
> I have 2 arrays - alums in-state and alums out-of-state.
>
> I have a function to lay out a table, given an array.
>
> I call this function twice - with the in-state array, then with the
> out-of- state array. I expect these 2 tables to appear sequentially.
>
> Then I have a mailto: tag for people to notify me when they move.
> This is supposed to go at the very bottom of the page, after the 2
> tables.
>
> BUT, the HTML renders as Table 1, then the mailto: (!!!!), then
> finally Table 2!
>
> Unfortunately I can't see the actual HTML when I View Source, so I'm
> hoping the group can help me find the error of my ways. I am pretty
> sure I have closed out the <TABLE> tag, etc.
>
>
> Thanks!
> Pete



Mozilla shows the link at the bottom of the page (Internet Exploder
doesn't).
Ditch IE and go for Mozilla.
BTW, the page loaded/rendered awfully slowly under both Mozilla and IE (> 1
minute).

Steven



Augustus 08-15-2003 06:46 PM

Re: Text after 2 tables actually appears between 2 tables !
 

"Peter Bassett" <pbassett2223@comcast.net> wrote in message
news:Xns93D87D4125DF1pbassett2223comcastn@216.148. 227.77...
> My webpage displays 2 tables that list my high school class's in-state and
> out-of-state alumni - it's at
> http://www.solotraveller.com/wwhs1981/wherewelive.html
>
> I have 2 arrays - alums in-state and alums out-of-state.
>
> I have a function to lay out a table, given an array.
>
> I call this function twice - with the in-state array, then with the

out-of-
> state array. I expect these 2 tables to appear sequentially.
>
> Then I have a mailto: tag for people to notify me when they move. This is
> supposed to go at the very bottom of the page, after the 2 tables.
>
> BUT, the HTML renders as Table 1, then the mailto: (!!!!), then finally
> Table 2!
>
> Unfortunately I can't see the actual HTML when I View Source, so I'm

hoping
> the group can help me find the error of my ways. I am pretty sure I have
> closed out the <TABLE> tag, etc.


The 5th to last line of your page is:

document.write("</table")

it should be:

document.write("</table>")





All times are GMT. The time now is 04:43 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57