
Originally Posted by
samanime
What about something like "Click here to read more"? To me, that sounds a little better. I know I mean be undermining some people's intelligence, but "click to continue" or "click to read more" makes it seen like they just have to click anywhere on the page. The "here" focuses there attention on the location of that specific text.
Also, do you think that having the link text say simply "click here" or whatever, with lead in text, or do you think it would be better to have at least a self-descriptive portion of the text in your link.
So, something like:
Code:
<a href="clickme.com">Click here</a> to read more.
or
Code:
<a href="clickme.com">Click here to read more</a>.
From at least an accessibility standpoint, I think the latter would be the best choice. Are there any negatives from using option two versus option one?
I actually disagree with this.
I don't think "Click here to read more" gives any extra information about where the link is clicking through to.
Have you guys ever used a screen reader?
Sighted people have the ability to screen a page in a second or so, that way they get a rough idea of what's presented to them.
The way blind people screen through a page is mainly with 2 shortcuts in the screen reader: one brings up all the headings (hence the importance of using Headings tags properly) and the other one brings up links.
So if they end up with a list such as "click here, click here, click here to read more, click here for more info, click here for details", it doesn't help really.
I think a good way to do it is to have:
Code:
<a href="#"><span>Click here</span> to read more about the Nokia E61i</a>.
The whole thing is a link but not everything has to be underlined.
Another way is to use "invisible text". This is something that should be use quite often for screen readers.
It would be something like this
Code:
<a href="#">Click here <span class="invisible">to read more about the Nokia E61i</span></a>.
span.invisible{
position:absolute;
right:9999px;
}
So the bit within the span class="invisible" is off screen and only screen readers will pick it up.
anyone agrees? disagrees?
Bookmarks