The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> The "OnClick" Headache from HELL
Julie Gleaton
post Mar 2 2008, 01:39 PM
Post #1





Group: Members
Posts: 1
Joined: 2-March 08
Member No.: 5,094



Help!

I'm in the process of designing my first ever website from scratch. I've done work on the website at work, done some goofin around with my MySpace, but - in short - my job blows and I need a professional looking site to house my graphic design and fine art for another company to even begin to look at me for employment.

My problem:

I'm using image buttons. The rollovers work dandy. My problem is that I want to navigate the click-er to a new URL within the same window. Not a new window (I can get that to work too), the same one.

This is what I'm working with:

<input type="image"
id="about"
src="./graphics/about_button.jpg"
onmouseover="this.src='./graphics/about_hover.jpg'"
onmouseout="this.src='./graphics/about_button.jpg'"
onclick="java script: document.location='about.htm'"
alt="about">
</input>

Now I've tried all sorts of crap with the OnClick:
document.location.href
location.href
removing OnClick and trying a href -
removing the word javascript

I've even added an alert() in the javascript section - that works too.

I've read a ton of forms and tried all of it and have NOT been successful yet. ANY new suggestions would be greatly appreciated.

THANK YOU!!!

This post has been edited by Julie Gleaton: Mar 2 2008, 02:02 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Mar 2 2008, 02:16 PM
Post #2


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



I recommend that you just use normal links. See also Links Want To Be Links.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
hiltonweb
post Mar 4 2008, 01:16 PM
Post #3


Newbie
*

Group: Members
Posts: 10
Joined: 29-February 08
Member No.: 5,080



Hi Julie,
Did you try using a target attribute in your link ?
i had similar issues with a dhtml based navigation menu I built for my site and it seemed to solve the problem when I included target="parent" in the links.
Like this :

<input type="image"
id="about"
src="./graphics/about_button.jpg"
onmouseover="this.src='./graphics/about_hover.jpg'"
onmouseout="this.src='./graphics/about_button.jpg'"
onclick="java script: document.location='about.htm'"
alt="about" target="_parent">
</input>
The target attribute tells the browser where to open a new window for that link. In this case, it is telling the browser to open that link in the current window.
You shouldnt need to include the word javascript in the onClick. That may be causing issues as well.

Oh, one last thing that may be mucking it up..In my limited experience I have found that javascript looks for actions to be written like so : onClick, onSubmit, onFocus, etc, with the second word starting with a capital letter. Theres something about the way javascript is written that it has to have that second halfs' first letter capitalized to distinguish it from the first half of the action.
Hope this helps somewhat...

This post has been edited by hiltonweb: Mar 4 2008, 02:14 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Mar 4 2008, 04:25 PM
Post #4


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



QUOTE(hiltonweb @ Mar 4 2008, 07:16 PM) *

Did you try using a target attribute in your link ?

That shouldn't be necessary. In any case the TARGET attribute is used for e.g. ordinary links or the <FORM> element itself (for form submissions), not INPUT.

QUOTE
You shouldnt need to include the word javascript in the onClick.

I agree it's unnecessary, but it shouldn't cause any problems. The problem with the script might be the use of document.location.href --rather you should use window.location.href or just location.href.

But like Darin wrote, you shouldn't rely on javascript for navigation in the first place. Javascript is not understood by search engines or browsers with javascript disabled, and makes it impossible to right click if the user wants to open the link in a new window. Only use javascript for optional enhancements.

QUOTE
In my limited experience I have found that javascript looks for actions to be written like so : onClick, onSubmit, onFocus, etc, with the second word starting with a capital letter.

That's not necessary for event attributes, since they are part of HTML. But many other things in javascript are case-sensitive, like getElementById or className.


User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 23rd April 2024 - 05:53 PM