473,406 Members | 2,467 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Slideshow and link

I've a slideshow (www.shopauto.ch) click on "Rechercher" and then "ALFA
ROMEO 147 2.0 16V SLSPD" (there is a camera icon next to the line).

you can see the slide show running. I've created a link on the picture, I
mean where the slide is running, but when you put the mouse pointer on it,
it doesn't show the "hand" pointer on IE and it doesn't even work on NS7.02

How may I fix this ?

Bob
Jul 23 '05 #1
7 1382
Lee
Bob Bedford said:

I've a slideshow (www.shopauto.ch) click on "Rechercher" and then "ALFA
ROMEO 147 2.0 16V SLSPD" (there is a camera icon next to the line).

you can see the slide show running. I've created a link on the picture, I
mean where the slide is running, but when you put the mouse pointer on it,
it doesn't show the "hand" pointer on IE and it doesn't even work on NS7.02


In most cases you test for newobj.filters before refering to it's
attributes, but there is one place where you forgot to test, first.

Jul 23 '05 #2
"Bob Bedford" <be******@YouKnowWhatToDoHerehotmail.com> wrote in message
news:41***********************@news.sunrise.ch...
I've a slideshow (www.shopauto.ch) click on "Rechercher" and then "ALFA
ROMEO 147 2.0 16V SLSPD" (there is a camera icon next to the line).

you can see the slide show running. I've created a link on the picture, I
mean where the slide is running, but when you put the mouse pointer on it,
it doesn't show the "hand" pointer on IE and it doesn't even work on NS7.02
How may I fix this ?

Bob


After
<a href="#"
to
<a href="#" style="cursor:hand" title="Click to enlarge"

I didn't try it under NS.
Jul 23 '05 #3
On Fri, 08 Oct 2004 12:24:37 GMT, McKirahan <Ne**@McKirahan.com> wrote:

[snip]
<a href="#" style="cursor:hand" title="Click to enlarge"


The value, hand, is not a valid CSS property value for cursor. The proper
name is pointer.

cursor: pointer;

Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Jul 23 '05 #4
"Michael Winter" <M.******@blueyonder.co.invalid> wrote in message
news:opsfjw181mx13kvk@atlantis...
On Fri, 08 Oct 2004 12:24:37 GMT, McKirahan <Ne**@McKirahan.com> wrote:

[snip]
<a href="#" style="cursor:hand" title="Click to enlarge"


The value, hand, is not a valid CSS property value for cursor. The proper
name is pointer.

cursor: pointer;

Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.


You're right. Though a little research found these:

http://www.htmlgoodies.com/beyond/css_cursors.html
CSS and Cursors, Huh?
cursor: hand (the traditional pointing hand)
cursor: pointer (that hand again)

http://www.w3schools.com/css/pr_class_cursor.asp
Notes in IE 5.x:
To display a hand, you may use the non-standard value hand. Like this:
{cursor: hand}

http://www.quirksmode.org/css/cursor.html#pointer
pointer: Explorer 6 Windows, Mozilla, Opera, Explorer 5 Mac, Safari 1.0+
hand: Explorer 4-6 Windows, Opera, Explorer 5 Mac, Safari 1.2

Jul 23 '05 #5
"Lee" <RE**************@cox.net> a écrit dans le message de
news:ck*********@drn.newsguy.com...
Bob Bedford said:

I've a slideshow (www.shopauto.ch) click on "Rechercher" and then "ALFA
ROMEO 147 2.0 16V SLSPD" (there is a camera icon next to the line).

you can see the slide show running. I've created a link on the picture, I
mean where the slide is running, but when you put the mouse pointer on it,it doesn't show the "hand" pointer on IE and it doesn't even work on
NS7.02
In most cases you test for newobj.filters before refering to it's
attributes, but there is one place where you forgot to test, first.


The strange thing is that I test before setting the filters. So if the
attribute doesn't exist, why the test is true ?

if (newobj.filters){ //if filters doesn't exists, why the test is true ?
newobj.filters.alpha.opacity=curpos
lastobj.filters.alpha.opacity=100-curpos
}
Thanks.

Bob
Jul 23 '05 #6
Lee
Bob Bedford said:

"Lee" <RE**************@cox.net> a écrit dans le message de
news:ck*********@drn.newsguy.com...
Bob Bedford said:
>
>I've a slideshow (www.shopauto.ch) click on "Rechercher" and then "ALFA
>ROMEO 147 2.0 16V SLSPD" (there is a camera icon next to the line).
>
>you can see the slide show running. I've created a link on the picture, I
>mean where the slide is running, but when you put the mouse pointer onit, >it doesn't show the "hand" pointer on IE and it doesn't even work on

NS7.02

In most cases you test for newobj.filters before refering to it's
attributes, but there is one place where you forgot to test, first.


The strange thing is that I test before setting the filters. So if the
attribute doesn't exist, why the test is true ?

if (newobj.filters){ //if filters doesn't exists, why the test is true ?
newobj.filters.alpha.opacity=curpos
lastobj.filters.alpha.opacity=100-curpos
}


That's not the code that's causing the problem.

It's too much trouble to work my way back to your source code,
but as I recall there are three places where you use the attributes
of newobj.filters, but you only test before two of them.

Jul 23 '05 #7
McKirahan wrote:
You're right. Though a little research found these:

http://www.htmlgoodies.com/beyond/css_cursors.html
Ignore. It is probably the _worst_ HTML & Related Technologies site I've
ever encountered.
http://www.w3schools.com/css/pr_class_cursor.asp
Notes in IE 5.x:
To display a hand, you may use the non-standard value hand. Like this:
{cursor: hand}


This is a fairish point. The older obsolete versions of IE don't support
"pointer". I have a "Its cosmetic, people should upgrade to Firefox if they
want it prettier" attitude towards them though.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Susanna | last post by:
Hi all, I'm using the following slideshow script that I found on the web to display changing images with a crossfade effect. Eventually I will be adding many more images to the slideshow. The...
2
by: Jeannie | last post by:
I have a popup window which is a slideshow of about 7 images. When the popup window loads, the first image is present and then the viewer can select next or previous to scroll through the rest of...
2
by: Adrian MacNair | last post by:
Hi I need some help if anyone can understand my crap javascript. The problem is that after the slideshow ends (reaches the end of array) it should stop, but the timeout doesn't clear and I can see...
7
by: Rabel | last post by:
Hi I am new to javascript and I am using a code that brings up pictures(slideshow) with this code <script type="text/javascript"> var photos=new Array() var which=0 ...
8
by: drillbit_99 | last post by:
I have an HTML page of thumbnail images. Each image can begin a slideshow of the images on the page by clicking on the image. This opens another HTML page that begins the slideshow using large...
22
by: bevoldjling | last post by:
Hi ! I need some help in putting together a website for our family gathering. Although I'm still pretty "green", I don't think what I need requires terribly advanced skills ...except for one...
3
by: eligius | last post by:
Found this neat slideshow javascript with linked images. Is it at all possible to change the properties (height, with, etc.) of the opened window of every individual link? <script...
1
by: Gaby Sandoval | last post by:
i currently use a SQL statement on my website to display a group of images (more specifically their location on the server) and links from the access database. only images that meet certain...
1
by: maarten2002 | last post by:
Hi people, I am quite new to JS-scripting and I have a question. Finally I found a "good" slideshow which works in IE, Chrome, FF with prototype. The only thing is that I would like the...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.