Click to See Complete Forum and Search --> : HTML Tables


clyde
04-16-2003, 03:03 PM
My Html page Has a Table in it with 300 rows.

How can I Position to a Certain Row With In a Table.

For Example the first cell in each row is a manufacturers name.

At the top of the page I have a button with each manufacturer's name on it.

By clicking the button with the manufacture's name on it how can I position the tabe to the first row that has that manufactures name in it.

Any help would be appreciated.

Thanks
Clyde

havik
04-16-2003, 03:09 PM
you could try reference tags.

put this to where the first row of the manufactors name is:
<a name="manufactorsname">

then the button link there like so:
<a href="#manufactorsname">Manufactor</a>

I know that works but within tables I'm not so sure.

Havik

JackTheTripper
04-16-2003, 03:12 PM
You could use anchor tags.

For your button use this link...

<a href= "#AAA_Rental">Your Button Here</a>

(# means go to the anchor named 'AAA_Rental' on this page)


Down in your table where that company starts you would put...

<a name= "AAA_Rental">

This tag will be invisable on the page.


Cheers.

clyde
04-24-2003, 02:25 PM
Thankyou Viper and Jack the Tripper.

Working now

havik
04-24-2003, 02:39 PM
Thankyou Viper and Jack the Tripper.



Viper? :D

Havik