Hi Michael,
I'm not running Mac, but a quick look at your HTML and JavaScript does
suggest these other Browsers might have trouble with what you are trying to
do.
Based on the way you have your HTML <FORM> and JavaScript, you could be
confusing the browser, because in the JavaScript function referenced in your
ONSUBMIT event, you are also doing form.submit() - which is like an attempt
at double posting.
I would re-write it like so:
-----------------------
// first change the ONSUBMIT attribute
<FORM ONSUBMIT="return tableSelect(this)">
// adding "return" above tells the
// event not to fire until the referenced
// function is completed
-----------------------
// then change your function to something
// like the following
function tableSelect(my_form) {
var Item = my_form.table.selectedIndex;
var Result = my_form.table.options[Item].value;
my_form.action = "?_function=" + Result + actionSelect(my_form);
return true;
}
// your JavaScript variable "form" should
// be considered a reserved word in JavaScript
// so change it to something unique
// assign JavaScript variables with the "var" keyword
// otherwise you create the variable in JavaScript
// global scope and this can confuse functions if your
// not careful
// removed the .submit() because it's not necessary
// concatenating the Result + actionSelect(my_form);
// values makes them into one word - should their
// be a '&' between them?
Obviously I haven't tested this, but I hope it helps. Cheers.....
Scott Cadillac,
Witango.org - http://witango.org
403-281-6090 - [EMAIL PROTECTED]
--
Information for the Witango Developer Community
---------------------
XML-Extranet - http://xml-extra.net
403-281-6090 - [EMAIL PROTECTED]
--
Well-formed Development (for hire)
---------------------
-----Original Message-----
From: Michael Dittbrenner [mailto:[EMAIL PROTECTED]
Sent: Friday, May 30, 2003 11:06 AM
To: [EMAIL PROTECTED]
Subject: RE: Witango-Talk: dotted IP number to IP number
I also wanted to add this is opera for mac version 6.02 and the error says
Method Not Allowed
The requested method POST is not allowed for the URL /index.html
Now this does work for opera 7.11 for pc though, so it seems mac opera and
mac safari.
What is odd is that part of the taf does work and with posts but then it
just dies.
http://64.241.182.139/newsearch.taf?_function=updatedetail&programid=418
this is the part that dies.
If you go to the beginning
http://64.241.182.139/newsearch.taf
you can search and add earlier.
If anyone has any ideas please let me know.
Mike D
Educational Directories Unlimited, Inc.
Michael Dittbrenner
Programmer
http://www.StudyAbroad.com
http://www.GradSchools.com
A service of EDU, Inc... http://www.EDUdirectories.com
A partner of EDU Internet Strategies: http://www.EDUInternetStrategies.com/
[Phone] 610-499-9200
[Fax] 610-499-9205
[E-mail] [EMAIL PROTECTED] or [EMAIL PROTECTED]
-----Original Message-----
From: Michael Dittbrenner [mailto:[EMAIL PROTECTED]
Sent: Friday, May 30, 2003 12:29 PM
To: [EMAIL PROTECTED]
Subject: RE: Witango-Talk: dotted IP number to IP number
I was wondering if anyone has had any issues with tafs and safari and/or
opera. I was working on a taf and had some issues with both of those
browsers with posts but in IE and netscape it was fine.
Mike D
Educational Directories Unlimited, Inc.
Michael Dittbrenner
Programmer
http://www.StudyAbroad.com
http://www.GradSchools.com
A service of EDU, Inc... http://www.EDUdirectories.com
A partner of EDU Internet Strategies: http://www.EDUInternetStrategies.com/
[Phone] 610-499-9200
[Fax] 610-499-9205
[E-mail] [EMAIL PROTECTED] or [EMAIL PROTECTED]
________________________________________________________________________
TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf
________________________________________________________________________
TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf
________________________________________________________________________
TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf
________________________________________________________________________
TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf
________________________________________________________________________
TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf