473,405 Members | 2,279 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,405 software developers and data experts.

onmouseover or other problem

I would be much obliged:

1) Can someone tell me how to make the pictures show up in the bottom
sections of the page http://www.goalseek.net/Buy_MCTM1.htm?

In those sections, the French and German sections, hovering over the
links with the mouse does not produce the effect obtained in other
areas of the page, and yet the syntax used appears to be the same: a
picture, pre-loaded, is supposed to show up.
There is something wrong with my code and I can't see what it is.
2)In the JavaScript slide show, I hard coded the path to the picture
like so:
<option value="/MCTM1/E_All_Good.jpeg" selected>All questions are...

I would rather use the preload information, but how to insert it?
Within double quotes? Single quotes?
<option value="pic_E_All_Good.src" selected>All questions are...

Cheers/Thanks.
Jul 20 '05 #1
3 1314
Marc R. Bertrand wrote:
1) Can someone tell me how to make the pictures show up in the bottom
sections of the page http://www.goalseek.net/Buy_MCTM1.htm?

In those sections, the French and German sections, hovering over the
links with the mouse does not produce the effect obtained in other
areas of the page, and yet the syntax used appears to be the same: a
picture, pre-loaded, is supposed to show up.
There is something wrong with my code and I can't see what it is.
http://validator.w3.org/check?uri=ht...line&verbose=1

And you may want to read

http://groups.google.com/groups?q=au...Ears.de&rnum=1
2)In the JavaScript slide show,
Slide show? Where?
I hard coded the path to the picture like so:
<option value="/MCTM1/E_All_Good.jpeg" selected>All questions are...

I would rather use the preload information, but how to insert it?
Within double quotes? Single quotes?
<option value="pic_E_All_Good.src" selected>All questions are...


Sorry, I do not understand.
PointedEars
Jul 20 '05 #2
Someone solved the problems I posted below. The problems were due to
an image variable name that I used twice. A 'common' but not easily
detected oversight. That someone is a professional: Mr. Brad Hedge.

Please check Brad's site out. You will *NOT* waste your time:

http://codepunk.hardwar.org.uk/

Marc R. Bertrand
================================================== ==================
mb@goalseek.net (Marc R. Bertrand) wrote in message news:<59**************************@posting.google. com>...
I would be much obliged:

1) Can someone tell me how to make the pictures show up in the bottom
sections of the page http://www.goalseek.net/Buy_MCTM1.htm?

In those sections, the French and German sections, hovering over the
links with the mouse does not produce the effect obtained in other
areas of the page, and yet the syntax used appears to be the same: a
picture, pre-loaded, is supposed to show up.
There is something wrong with my code and I can't see what it is.
2)In the JavaScript slide show, I hard coded the path to the picture
like so:
<option value="/MCTM1/E_All_Good.jpeg" selected>All questions are...

I would rather use the preload information, but how to insert it?
Within double quotes? Single quotes?
<option value="pic_E_All_Good.src" selected>All questions are...

Cheers/Thanks.

Jul 20 '05 #3
In article <59*************************@posting.google.com> , mb@goalseek.net
(Marc R. Bertrand) writes:
Someone solved the problems I posted below. The problems were due to
an image variable name that I used twice. A 'common' but not easily
detected oversight. That someone is a professional: Mr. Brad Hedge.

Please check Brad's site out. You will *NOT* waste your time:

http://codepunk.hardwar.org.uk/


From his page, in the Javascript tutorials, lesson 2, on alert boxes:

<quote>
Making alert() boxes is pretty simple, but it helps to have a little overview
of the hierarchy of objects that JavaScript recognizes. At the top of the heap
is "navigator". This is the browser that the viewer is using. It's usually
either Internet Explorer or Netscape. The "navigator" object has lots of
properties, but you can't change any of them. We'll be using these properties
later to see which browser a viewer is using (navigator.appName). The
properties of "navigator" can tell you the browser's name, version, and other
neat stuff like what plug-ins are installed.
</quote>

The part that struck me first was "We'll be using these properties later to see
which browser a viewer is using (navigator.appName)."

That, in and of itself, makes it a *bad* tutorial site.
When I write a script, I dont care what browser you are using. I want to know
if your browser supports the objects and methods that I want to use. It matters
not if its IE6.0 or if its FunkyBrowser 3.77 (I made that name up).

Throughout, he uses language="javascript" which is deprecated. More bad habits
he is "teaching".

Further down that page:
<quote>
You don't need quotes for numbers. In fact, you can do a little math in your
alert() box:
</quote>

While its not a major flaw, its a technically incorrect statement. And when
teaching people, its best to be as accurate as you possibly can. The statement
above, to me, implies that the alert is doing the math when in fact its not.
All an alert box can do is display a message, thats all. The javascript
interpreter does the rest. A better statement might be "You can display the
results of math in your alert()"

From his code for his pages:

<a href="javascript:popmenu('menu3')" class="nav">Downloads</a>

http://www.jibbering.com/faq/#FAQ4_24

I guess if you want to learn javascript, you must have it enabled eh? That is
totally false.

So I guess I take difference with whether a newbe would be wasting time there
(I think they would be).
--
Randy
Jul 20 '05 #4

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

Similar topics

1
by: christian9997 | last post by:
Hi I was trying to create a page where a SubMenu would appear when the user moved the mouse over an item of a Menu (= Table Cell <TD>). Unfortunately there seems to be a problem; the onMouseOver...
7
by: windandwaves | last post by:
Hi Gurus I am trying to make this rather complicated maps with an a huge number of mouseovers and the like. I want to set up a function that OnMouseDown swaps the OnMouseOver and OnMouseOut for...
5
by: Martin Chen | last post by:
I have a frame set (as per MS FrontPage 2000). It has a contents and a main frame. The contents frame has a menu bar written with with javascript (in the context of a table). In IE6.1 everything...
2
by: MrCode2k | last post by:
Hello, Trying to do: I just want a table that I can scroll and that has fixed headers. Problem: I got it to work but when I added the onmouseover event it didn't work anymore....
7
by: MrCode2k | last post by:
Hello, Trying to do: I just want a table that I can scroll and that has fixed headers. Problem: I got it to work but when I added the onmouseover event it didn't work anymore....
2
by: Daz | last post by:
Hi everyone. I think my problem is a simple one, but I am completely baffled as to how to pull it off. I have a piece of code like so... document.write( "<img id=\"slideshow_toggle\"...
1
by: Ciuin | last post by:
Again I need your help. This is the test page I am working on: http://www.manfredkooistra.de/zeugs/test/test.php Description: The page shows a centered image and a navigation menue...
5
by: Sabbaath | last post by:
First off, I've pretty much convinced myself that the issue is that there are onmouseover events inside the div that contains an onmouseover event on it... I wrote the message below first. This was...
3
by: equazcion | last post by:
Hi, I have an image reference (IMG) in my page that changes depending on the value of a database field. Clicking the image triggers an Ajax call to change the database field (toggles the field...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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,...

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.