|
Posted by jrf1 on 04/22/07 12:02
On Apr 20, 5:07 pm, "Jonathan N. Little" <lws4...@centralva.net>
wrote:
> j...@ntlworld.com wrote:
> > Hi,
>
> > I am developing an app. and I want to allow people to answer questions
> > and jump the list of questions up as they do it. I can make this work
> > but IE6 requires slightly different HTML than Firefox and Opera.
> > See below...
>
> <snip code>
>
> Many have already mentioned your solution employed invalid markup, there
> is a much better, simpler way is to put anchors on specific rows of a
> table set an ID to the table row of first table cell...
>
> <a href="#pushpin">Just to some row...</a>
>
> ...
>
> <table>
>
> ...
>
> <tr id="pushpin"><td>Will jump to here</td>...
>
> One simple solution, no JavaScript, valid, and even IE will cooperate!
>
> --
> Take care,
>
> Jonathan
> -------------------
> LITTLE WORKS STUDIOhttp://www.LittleWorksStudio.com
Yes, that works, as Steve said also. Thanks for the advice. As I
suspected there had to be some neater way. ;-)
[Back to original message]
|