Posted by David Dorward on 01/09/48 11:28
Lee wrote:
> Could someone help me make this target url open up in a new window
> please.
Please no. New windows are horrible and cause usability and accessibility
problems.
> I have put the target tag option where I think it should be but
> it does not work?
> <form action="http://www1.blablabl.co.uk/partners.asp">
The target ATTRIBUTE is allowed on form elements.
> <input type="hidden" name="page" value="searchresults" />
In HTML you shouldn't have that "/" there.
> <option value="0">I NEED A Room to Rent in:
In XHTML the end tag for <option> is required. You should probably made a
decision about which one you are using.
> </select>
> <br>
> </select>
You've gone wrong here. http://validator.w3.org/ would catch a number of
these problems. Its not very nice to ask people in a Usenet group to do
something a machine can do for you easily.
> <div align="right" style="padding:10px; width:231; height:36"><input
231 what? 36 what? You should probably validate your CSS too.
> <a target="_blank" href="http://www1.blablabla.co.uk/?rid=rooml"><img
> src="http://www1.flatmateclick.co.uk/images/tinylogo.gif" width="124"
> height="28" border="0" /></a>
Well you have a link that opens in a new window (where's the alt attribute
on that image?). It won't submit the form though.
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
[Back to original message]
|