Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 02-08-2004, 04:48 PM   PM User | #1
Mr J
Senior Coder

 
Join Date: Aug 2002
Location: UK
Posts: 2,789
Thanks: 2
Thanked 14 Times in 14 Posts
Mr J is on a distinguished road
Has no properties

When I use the following in Mozilla I get the error

document.getElementById(rad_name) has no properties

Can someone please explain this and how to rectify it



<script language="JavaScript">
<!--
rad_on="radio_on.gif"

function rad_click(rad_name){
document.getElementById(rad_name).src = rad_on
}
// -->
</script>

<img onclick="rad_click(this.name)" src="radio_off.gif" name="mypic">
Mr J is offline   Reply With Quote
Old 02-08-2004, 05:39 PM   PM User | #2
liorean
The thread killer


 
Join Date: Feb 2003
Location: Umeå, Sweden
Posts: 5,575
Thanks: 0
Thanked 84 Times in 75 Posts
liorean will become famous soon enoughliorean will become famous soon enough
Because the image had no id attribute matching the rad_name argument. Set an id on the image as well, or use document.images[rad_name] instead.
__________________
liorean <[lio@wg]>
Articles: RegEx evolt wsabstract , Named Arguments
Useful Threads: JavaScript Docs & Refs, FAQ - HTML & CSS Docs, FAQ - XML Doc & Refs
Moz: JavaScript DOM Interfaces MSDN: JScript DHTML KDE: KJS KHTML Opera: Standards
liorean is offline   Reply With Quote
Old 02-08-2004, 05:41 PM   PM User | #3
Garadon
Regular Coder

 
Join Date: Jul 2002
Posts: 698
Thanks: 0
Thanked 0 Times in 0 Posts
Garadon is an unknown quantity at this point
or to u could just send this to the function

then
rad_name.src=rad_on

should assign the picture to the send element
Garadon is offline   Reply With Quote
Old 02-08-2004, 07:00 PM   PM User | #4
Mr J
Senior Coder

 
Join Date: Aug 2002
Location: UK
Posts: 2,789
Thanks: 2
Thanked 14 Times in 14 Posts
Mr J is on a distinguished road
Thank you.

It's amazing, so simple yet so important

Mr J is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 06:38 AM.


Advertisement
Log in to turn off these ads.