Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   HTML (http://www.velocityreviews.com/forums/f31-html.html)
-   -   Use of Back link query (http://www.velocityreviews.com/forums/t160719-use-of-back-link-query.html)

KiwiBrian 01-23-2005 11:06 PM

Use of Back link query
 
I have a site where on every page I have a "Back" link using the following:-
<td class="backbutt"><a href="javascript:history.back()">Back</a></td>
This works fine when navigating the site.
However if I link to that page from elswhere in the site using:-
<a href="path/foo.html" target="_blank">
which works as I wish it, namely that the destination page is opened in a
new window; then the "Back" link on that new/destination page does not work.
Can I have it operate as I wish with the "Back" button still working?

TIA
Brian Tozer



Barbara de Zoete 01-23-2005 11:14 PM

Re: Use of Back link query
 
On Mon, 24 Jan 2005 12:06:10 +1300, KiwiBrian <briantoz@ihug.co.nz> wrote:

> I have a site where on every page I have a "Back" link using the following:-
> <td class="backbutt"><a href="javascript:history.back()">Back</a></td>
> This works fine when navigating the site.


Well, depends. It wouldn't for me and 15% of the visitors (apporx.), because I
don't allow Javascript to run.

> However if I link to that page from elswhere in the site using:-
> <a href="path/foo.html" target="_blank">
> which works as I wish it, namely that the destination page is opened in a
> new window; then the "Back" link on that new/destination page does not work.


Duh, that is why target=_blank is opposed to. It breaks history and confuses
visitor.

> Can I have it operate as I wish with the "Back" button still working?
>


Hope not.


--
,-- --<--@ -- PretLetters: 'woest wyf', met vele interesses: ----------.
| weblog | http://home.wanadoo.nl/b.de.zoete/_private/weblog.html |
| webontwerp | http://home.wanadoo.nl/b.de.zoete/html/webontwerp.html |
|zweefvliegen | http://home.wanadoo.nl/b.de.zoete/html/vliegen.html |
`-------------------------------------------------- --<--@ ------------'

Hywel Jenkins 01-24-2005 07:10 AM

Re: Use of Back link query
 
In article <ct1al2$5va$1@lust.ihug.co.nz>, briantoz@ihug.co.nz says...
> I have a site where on every page I have a "Back" link using the following:-
> <td class="backbutt"><a href="javascript:history.back()">Back</a></td>
> This works fine when navigating the site.
> However if I link to that page from elswhere in the site using:-
> <a href="path/foo.html" target="_blank">
> which works as I wish it, namely that the destination page is opened in a
> new window; then the "Back" link on that new/destination page does not work.
> Can I have it operate as I wish with the "Back" button still working?


There 's no history if you open a link like that. You've opened a new
window.

--
Hywel http://kibo.org.uk/
I do not eat quiche.

Bernhard Sturm 01-24-2005 07:54 AM

Re: Use of Back link query
 
Barbara de Zoete wrote:
>
>
> Duh, that is why target=_blank is opposed to. It breaks history and
> confuses visitor.


just a general question: is target='_blank' as well considered *bad* if
you need to jump out of the context of a certain site? target='_blank'
is specified as a *must* in a lot of gov. and company style guides in
order to signal to the users: you have definitely left our site and
looking now at some content we don't take responsibility for.

what do you think about such specifications?

cheers
bernhard


--
www.daszeichen.ch
remove nixspam to reply


----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---

Adrienne 01-24-2005 09:29 AM

Re: Use of Back link query
 
Gazing into my crystal ball I observed Bernhard Sturm
<sturmnixspam@datacomm.ch> writing in news:41f4aa4e$1_2@127.0.0.1:

> Barbara de Zoete wrote:
>>
>>
>> Duh, that is why target=_blank is opposed to. It breaks history and
>> confuses visitor.

>
> just a general question: is target='_blank' as well considered *bad* if
> you need to jump out of the context of a certain site? target='_blank'
> is specified as a *must* in a lot of gov. and company style guides in
> order to signal to the users: you have definitely left our site and
> looking now at some content we don't take responsibility for.
>
> what do you think about such specifications?
>
> cheers
> bernhard
>
>


Since I use mouse gestures, I very rarely look up to see if the back button
has been grayed out, so I quite frequently don't notice that a site has
opened a new window. Then I gesture back like an idiot until I realise
some @#$^*( has opened a new window without advising me.

I also don't appreciate sites that send me somewhere in a frame with the
top frame saying something about how the parent is not responsible for this
site, etc. Hey, I'm a big girl now, and _I_ am responsible for what sites
I visit.

As a developer, I give visitors a choice,
<http://www.scriptassist.com/links.asp> is a good example.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Bernhard Sturm 01-24-2005 10:17 AM

Re: Use of Back link query
 
Adrienne wrote:
>
> Since I use mouse gestures, I very rarely look up to see if the back button
> has been grayed out, so I quite frequently don't notice that a site has
> opened a new window. Then I gesture back like an idiot until I realise
> some @#$^*( has opened a new window without advising me.


so you better use FF visible mouse gestures. you can close a window
automatically by mouse gestures: down left :-)

but in general you are right. However, I can understand not opening a
new window from a CI/CD point of view, that this can add a lot of
confusion if you don't signalise to the user: 'hey, you have just left
our website'.
One thing which drives me crazy at university or governmental sites:
they don't really have a clear CD and if they have one it's very badly
communicated through their sites. Now if the browser doesn't open a new
window (or better a new tab! sigh) I always ask myself: WTF?! Do they
have the complete CD chaos in their organisation, or what? It's then
just a few seconds later that I realise that I have just followed a link
that led to an external resource... Even if they tell their audiance
that the link will bring them outside of their website, I doubt if it's
noticed by the average user if the 'alien' URL opens in the same window.

> As a developer, I give visitors a choice,
> <http://www.scriptassist.com/links.asp> is a good example.


I don't see why this should be different from other sites (looking at it
through FF1.0). All links open in the same window. So how can a user
notice which link belongs to the service provided by the original site
(www.scriptassist.com) and which doesn't? Not all users check the url
while surfing...


--
www.daszeichen.ch
remove nixspam to reply


----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---

Bernhard Sturm 01-24-2005 10:19 AM

Re: Use of Back link query
 
Bernhard Sturm wrote:
>
> so you better use FF visible mouse gestures. you can close a window
> automatically by mouse gestures: down left :-)


correction. I believe the default setting for this is: down right ;-)
I use different settings

--
www.daszeichen.ch
remove nixspam to reply


----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---

Sid Ismail 01-24-2005 10:39 AM

Re: Use of Back link query
 
On Mon, 24 Jan 2005 12:06:10 +1300, "KiwiBrian" <briantoz@ihug.co.nz> wrote:

: I have a site where on every page I have a "Back" link using the following:-
: <td class="backbutt"><a href="javascript:history.back()">Back</a></td>
: This works fine when navigating the site.


If you want a slideshow of pictures, it is customary to add back and forward
links in the form of arrows. Here you know which was the last page and the
next page, as this is a sequential viewing. No javascript. For other
applications... Viewer has a back button. Please do not insult his
intelligence.

Same rule applies for new window, resizing of his window, and worse,
changing his default viewing size.

Sid





Karl Core 01-24-2005 12:15 PM

Re: Use of Back link query
 

"Bernhard Sturm" <sturmnixspam@datacomm.ch> wrote in message
news:41f4aa4e$1_2@127.0.0.1...
> Barbara de Zoete wrote:
>>
>>
>> Duh, that is why target=_blank is opposed to. It breaks history and
>> confuses visitor.

>
> just a general question: is target='_blank' as well considered *bad* if
> you need to jump out of the context of a certain site? target='_blank' is
> specified as a *must* in a lot of gov. and company style guides in order
> to signal to the users: you have definitely left our site and looking now
> at some content we don't take responsibility for.
>


Which government are you talking about?


--
-Karl Core
Please Support "Project Boneyard":
http://www.insurgence.net/info.aspx?...&item=boneyard



Travis Newbury 01-24-2005 01:01 PM

Re: Use of Back link query
 
Barbara de Zoete wrote:
> Duh, that is why target=_blank is opposed to. It breaks history and

confuses
> visitor.


I really want to meet the person that is so confused by a window
popping up that they shut the computer down in dispair...

I do not doubt it might happen, but I really want to meet a person like
this.

--
-=tn=-



All times are GMT. The time now is 11:32 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57