472,958 Members | 1,889 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Javascript error headache: object doesn't support this property or method

I and my friend Karl have spent literally all day trying to find out what is
causing my error but we are zapped of any further functionality :)

I have a form that adds news records. You select 'City' then you select
'Business Category' - now when you select 'Business Category' the next
drop-down menu (business sub category) should populate with 'Business
Sub-categories' related to the 'Business Category' but once 'Business
Category' is selected I get the javascript error:

Line: 98
char: 25
error: object doesn't support this property or method
code: 0

Can anyone save us?

This is the URL: http://www.workwise-ely.org/directory/add.php

This is the siurce: http://www.workwise-ely.org/directory/form.txt

On the 'business_category' I am using
onchange="this.form.ac.value='delete';this.form.su bmit()
Many thanks
Jul 23 '05 #1
3 11398
In article <41******@212.67.96.135>, mi*****@colby.net enlightened us with...

This is the URL: http://www.workwise-ely.org/directory/add.php


Netscape says:
this.form.submit is not a function
when I change the business category select element.

I cannot for the life of me find the script that runs with the onchange of
your form fields to populate the boxes. The error's in there somewhere with
the scope of the 'this' keyword.

--
--
~kaeli~
Why did kamikaze pilots wear helmets?
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #2
"news.onetel.net.uk" wrote:
I and my friend Karl have spent literally all day trying to find out what is
causing my error but we are zapped of any further functionality :)

I have a form that adds news records. You select 'City' then you select
'Business Category' - now when you select 'Business Category' the next
drop-down menu (business sub category) should populate with 'Business
Sub-categories' related to the 'Business Category' but once 'Business
Category' is selected I get the javascript error:

Line: 98
char: 25
error: object doesn't support this property or method
code: 0

Can anyone save us?

This is the URL: http://www.workwise-ely.org/directory/add.php

This is the siurce: http://www.workwise-ely.org/directory/form.txt

On the 'business_category' I am using

onchange="this.form.ac.value='delete';this.form.su bmit()

Many thanks


I see onchange="form.pr.ac.value='pr';form.pr.submit()" for the
business_category, not what you've got listed above.

Presumably you mean "this.form.pr.ac.value....", but "pr" is not a property of
the form, it's the id of the form, and "this.form" gives you a reference to that
form, the id is not required.

So, to set the value of another input you'd use
onchange="this.form.ac.value='whatever';this.form. submit();"

--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq

Jul 23 '05 #3
On Mon, 9 Aug 2004 16:45:33 +0100, news.onetel.net.uk <mi*****@colby.net>
wrote:
I have a form that adds news records. You select 'City' then youselect
'Business Category' - now when you select 'BusinessCategory'the next
drop-down menu (business sub category) shouldpopulate with'Business
Sub-categories' related to the 'BusinessCategory' butonce 'Business
Category' is selected I get thejavascript error:
You shouldn't be doing it with JavaScript if you have server-side support.
To do so will make your page needlessly dependent upon JavaScript. It's
also unwise to automatically submit a form when someone changes a value in
a SELECT element. This is because two methods of changing values, by
keyboard and by mouse wheel, result in several change events. Furthermore,
a user can't change their minds or make a correction. Instead they have to
wait for the server response before they can try again. Lastly, if they
stop the submission, but then realise that it was the most appropriate
option, they can't continue because they already have that value selected
and selecting it again won't fire an event. Instead, they have to select a
different option before reselecting[1].
Line: 98
char: 25
error: object doesn't support this property or method
code: 0

Can anyone save us?
Well you can start by using a different browser for debugging and testing
documents. IE is a lowsy browser. Be sure to use a better one like Mozilla
or Opera before deploying a page. Despite being more standard's compliant,
these browsers offer better script error feedback by default (no updates
required).

[snip]
On the 'business_category' I am using

onchange="this.form.ac.value='delete';this.form.su bmit()


Actually, you're not. The error Opera shows me is:

http://www.workwise-ely.org/directory/add.php
Event thread: onchange
Error:
name: TypeError
message: Statement on line 1: Expression evaluated to null or
undefined and is not convertible to Object: form.pr
Backtrace:
In unknown script
form.pr.ac.value = "pr";
At unknown location
{event handler trampoline}

Searching for that code, I find:

onchange="form.pr.ac.value='pr';form.pr.submit()"

By the way, the more standards-compliant way to reference forms and form
controls is through the forms and elements collections:

onchange="this.form.elements['ac'].value='pr';this.form.submit();"

But, as I said above, you should drop that whole thing anyway.

Now we have that sorted, on to other matters...

Minor points

I'd change the images (Business and Enterprise, and Investors In People)
so that they don't shift down when hovered. It looks like something went
wrong when you altered them.

At the bottom of the page, it states: "This website is compliant in: XHTML
| CSS | WAI-AAA". It isn't valid XHTML, and I couldn't check the CSS
because the mark-up was broken. Don't claim these things if they're
untrue. Also, it should probably read, "This website complies with the
following standards: ...".

Overall, there are seven spelling and grammar mistakes in the "In
Associating With..." section.

The name for electronic messages is "e-mail", not "email".

Technical matters

I don't know why your script expends so much energy on code to open new
windows. New windows are a Bad Thing. Don't use them. Pop-up blockers also
make them unreliable.

Steer clear of Dreamweaver generated JavaScript code. It's nasty. I'd
personally recommend steering clear of Dreamweaver, but that may not be an
option. By the way, I hope nothing ever goes wrong with YY_checkform(). :)

Please learn to use feature detection. Just because a browser supports
document.getElementById doesn't mean it supports every W3C-specified
object and method. Similarly, it isn't just IE that provides the
document.all collection. See the group FAQ, specifically section 4.26 and
its links. <URL:http://jibbering.com/faq/>

This goes with the previous point, but it deserves some extra attention.
Your CSS switcher is a bad idea. Not all browsers support the
document.styleSheets collection, thereby rendering the entire function
worthless. Instead, use the intended method of stylesheet switching:
alternate stylesheets. All good browsers will allow the user to switch the
active stylesheet using some built-in method. IE, being a terrible
browser, does not, so your function still serves a purpose in augmenting
that particular browsers failings. Still, it requires feature detection.

Mike
[1] This last case happened to me on another site just 10 minutes ago. So
yes, these things do occur.

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail
Jul 23 '05 #4

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

Similar topics

5
by: shank | last post by:
Can anyone give me some general ideas on why an error like Object doesn't support this property or method: 'ZoneRS.MoveFirst' comes up on a page? MoveFirst is a command to move to the first...
4
by: KathyB | last post by:
I have the following script in an html page: function goToPosition() { varGoTo = document.write(document.cookie("Position")); document.scrollTo(0, varGoTo); } </head> <body...
2
by: Olaf | last post by:
I have a frameset page witch contains the myFuc() function. The function is accessed from a page in one of the frames in the frameset. An example is shown below. <input...
5
by: den2005 | last post by:
Hi everybody, Problem with dragging effect of resizing is working but having problem with setting a flag to determine if mouse button is click or not. Is there anyone knows how to fixed this? I...
5
by: John Olbert | last post by:
Subject: Error is Object doesn't support this property or method I am trying to pass a C# string under Vs2005 (Net2) to an Vb6 ActiveX Control. I get the following runtime error-- "Object...
2
by: Charles | last post by:
I have a validation script used before submitting a form. When executed it says "Object doesn't support property or method". I'm using onclick="return validate();" which should be fine. But when...
0
by: chighley | last post by:
I'm using CR 11.5 R2 for VS.NET 2005. I have a CrystalReportViewer on an aspx page. When my report is run, the report comes up in the viewer but if either the export or print button is clicked a...
1
by: chetan7991 | last post by:
I'm using a jquery plugin Galleriffic in my page and it shows perfectly in all browsers except IE. The error says: "Object doesn't support this property or method" The code I use for script...
2
by: simeric | last post by:
Hi all experts, I've "object doesn't support this property or method" error when running a Javascript on Internet Explorer 8 This is the statement that is having the error:- ...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.