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

help oncompatibility issues

hi

I'm new to javascript, and I've been looking around for some
references on compatibility issues, but didn't found much.

I'm intrested in any and all kind of recommandations about
which methods are supported by which browsers, and all that
kind of stuff.

Are there any groups focused on these issues, or some pages
where reports up to date may be found ?

thanks a lot

for instance, I've written some basic code from tutorials in
order to get my hands in javascript, and even with that simple
stuff, I've already come across problems with scripts that
work with firebird, but don't work with explorer.

source of that example follows:
(it's in french, but understandable I guess)

function choixprop(f) {
for (i in document[f].choix ) {
if (document[f].choix[i].checked)
{
alert("Vous avez choisi la proposition d'indice " + i
+ " dont la valeur est " + document[f].choix[i].value);
uncheck_tout(f); //sinon, on a beau reloader, ca reste coche
return;
}
}
alert("Vous n'avez rien choisi");
}

function uncheck_tout(f) {
for (i in document[f].choix ) {
if (document[f].choix[i].checked)
{
document[f].choix[i].checked=false;
}
}
}
<FORM NAME="form3">
<INPUT TYPE="radio" NAME="choix" VALUE="a">Choix num&eacute;ro 1<BR>
<INPUT TYPE="radio" NAME="choix" VALUE="b">Choix num&eacute;ro 2<BR>
<INPUT TYPE="radio" NAME="choix" VALUE="c">Choix num&eacute;ro 3<BR>
<INPUT TYPE="button"NAME="but" VALUE="Go" onClick="choixprop('form3')">
</FORM><br />

Jul 23 '05 #1
2 945
On Sun, 31 Oct 2004 18:08:48 +0100, santiago wrote:
I'm intrested in any and all kind of recommandations about
which methods are supported by which browsers,


Ask the browser. Google the group on 'feature detection'.

Also, the FAQ mentions this..
<http://jibbering.com/faq/#FAQ4_26>

HTH

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
Jul 23 '05 #2
On Sun, 31 Oct 2004 18:08:48 +0100, santiago <sa******@home.fr> wrote:

[snip]e
if (document[f].choix[i].checked)


You might want to read the FAQ notes section related to referencing form
controls.

<URL:http://www.jibbering.com/faq/faq_notes/form_access.html>

[snip]

Mike

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

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

Similar topics

2
by: Megan | last post by:
Can you write conditional VBA code that affects only one or two records on a continuous subform? I have a form with a subform on it. The parent/ child field that links the forms is CaseID. The...
7
by: desi90 | last post by:
Hi, I have a following report created from a table REGION Issue count South C1 3 South C2 1 West C1 4 North C1 2 North C2 5 East C1 1
15
by: DavidS | last post by:
Have Visual Studio.NET installed on MS 2000 Professional OS laptop. No issue ever with web development and SQL connections. Purchased new laptop with XP Professional SP2!!!!!!!! & Visual...
7
by: Rainer Queck | last post by:
Hello NG, I am currently confronted with the task to equip a vs2005 project with context sensitive online help (F1). Reading through the MSDN-Library I found out about the "HelpProvider" class,...
1
by: jkincaid | last post by:
I need help on a simple database, I have limited ACCESS skills. Here's my dilemma: I have 2 tables: Table one is customer issues Table two is the particular customer Table one includes:...
0
by: JohnnyB | last post by:
I've been wrestling with this off and on for a few days and came close but it's still not right. I'll try to explain it as best I can. I created a report with a pie chart on the first page that...
15
by: rhino | last post by:
I've put together a prototype of two-tiered CSS tabs that works really well in IE6, IE7, and FF2. It also works very well in Opera 9.27 _except_ that the placement of the lower tier of tabs is...
3
by: Brad | last post by:
I have an aspx page that is sending pdf files to client browsers: it uses a filestream to read the pdf file and response.binarywrite to send content to the browser. This has worked great for years...
53
by: souporpower | last post by:
Hello All I am trying to activate a link using Jquery. Here is my code; <html> <head> <script type="text/javascript" src="../../resources/js/ jquery-1.2.6.js"</script> <script...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.