Robbie wrote:
> 
> <span id="winloc" style="position:relative; visibility:hide">
> <form name="winform">
> <img src="gifs/seeme.gif">
> <select name="seloc" size="1" onChange="javascript:warp()">
> <option value="bestsellers.asp">best sellers</option>
> <option value="boxes.asp">boxes</option>
> </select>
> </form>
> </span>

IANAHE (I am not an HTML expert) but I can see one obvious possible
reason for this:

<span> is an inline element, and <form> is a block-level element. You
aren't supposed to have block-level elements inside inline elements.

Try replacing the <span> with a <div> (you can put all the same
attributes on the <div> as you can on the <span>) and see if that works.

If not, I'll have to leave it to someone more expert than myself to help
you.

Stuart.

PS followups set to .general, because .webtools is for bugzilla,
tinderbox, bonsai etc. This is offtopic for .general too, but there
isn't really anywhere else.

Reply via email to