Ask a Question related to Macromedia Dreamweaver, Design and Development.
-
middletree #1
code question--links
I went to a site today which had some links which were very annoying because
the little hand didn't come up when you mouse over them, so you had no way
of knowing they were links, except the wording said "click here" or some
such thing. Anyway, clicking these links would bring up popup windows, and
the code for one such link looks like this:
<u
onclick="MM_openBrWindow('request.htm','winRequest ','scrollbars=yes,width=85
0,height=500')">Click
to Fill out the Request Form</u>
I am not sure what the <u> tag is, but is this way of linking preferable to
the <a href> way? What possible reasons could this webmaster have had for
doing it this way?
middletree Guest
-
Code for email links within database generated pages?
What is the line of code that must go into a database genearted deatils page to make an email address a live, "mailto" link? I can't remember how to... -
links question
When i put a link on a page it is underlined. I was on a site there the link became underlined when you moused over it. How is this done? Thanks -
Links To Code access Secuirty....http://www.codeproject.com/dotnet/UB_CAS_NET.asp Nice article..
-- Thanks and Regards, Amit Agarwal Software Programmer(.NET) --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system... -
Code to validate external links?
Does anyone know of a simple script for validating a list of external links? There are portal packages out there which do this, but I just want... -
Question on targeting links in MX
I have created a menu with MX that basically has buttons that link to html files. The files all open in a certain frame called mainFrame. Here is... -
darrel #2
Re: code question--links
onclick="MM_openBrWindow('request.htm','winRequest ','scrollbars=yes,width=85> <u
>Ouch. That's horrible.> 0,height=500')">Click
> to Fill out the Request Form</u>
A link is a link. There is a perfectly good tag for that: <a>
Underline. Another awful tag.> I am not sure what the <u> tag is
Absolutely not.> but is this way of linking preferable to
> the <a href> way?
Ignorance? Stupidity? Spite? Doesn't like people that use text browsers? Or> What possible reasons could this webmaster have had for
> doing it this way?
who use screen readers? Or whoe don't surf with javascript turned on?
-Darrel
darrel Guest
-
Peter Connolly #3
Re: code question--links
"middletree" <middletree@verywarmmail.com> wrote in message
news:bfhmga$hg4$1@forums.macromedia.com...because> I went to a site today which had some links which were very annoyingand> the little hand didn't come up when you mouse over them, so you had no way
> of knowing they were links, except the wording said "click here" or some
> such thing. Anyway, clicking these links would bring up popup windows,onclick="MM_openBrWindow('request.htm','winRequest ','scrollbars=yes,width=85> the code for one such link looks like this:
>
> <u
>to> 0,height=500')">Click
> to Fill out the Request Form</u>
>
> I am not sure what the <u> tag is, but is this way of linking preferableThe <u> tag is the deprecated Underline tag (removed from HTML 4.0; you're> the <a href> way? What possible reasons could this webmaster have had for
> doing it this way?
>
supposed to use text-decoration:underline in your style sheet, instead).
The real work is done by the onclick action. I don't believe it will work if
javascript is turned off, and accessibility is going to be compromised for
users with alternative browsers such as Lynx and Jaws. The call gives the
user more control over the size and format of the pop-up window, which is
probably why the developer did it that way.
HTH,
Pete.
Peter Connolly Guest



Reply With Quote

