C
Chris
<< Translation in english of my main post >>
Hi,
I do not success to pass by parameter the contents of "param".
in the function "Main" if I replace Suite('+param+') by Suite('+40+')
dans la fonction Main si je remplace Suite('+param+') par Suite('+40+')
then all is ok.
For info, the parameter "param" will be a string
Thanks for your help
Chris
Corresponding code:
function Main(param) {
alert("test "+param); <<<<<<<<<<< Ici tout se passe bien : le contenu de
param est bien affiché
fchaine=''
....
+'<div ><a href="#" onclick="javascript:return Suite('+param+');"><IMG
src="tg.gif" ></a></div>'
....
document.write(fchaine);
}
-----------------------
function Suite(param) {
alert("test "+formulaire); <<<<<<<<<<< Ici rien ne va plus il est ecrit:
test [objet]
return false;
}
Hi,
I do not success to pass by parameter the contents of "param".
in the function "Main" if I replace Suite('+param+') by Suite('+40+')
dans la fonction Main si je remplace Suite('+param+') par Suite('+40+')
then all is ok.
For info, the parameter "param" will be a string
Thanks for your help
Chris
Corresponding code:
function Main(param) {
alert("test "+param); <<<<<<<<<<< Ici tout se passe bien : le contenu de
param est bien affiché
fchaine=''
....
+'<div ><a href="#" onclick="javascript:return Suite('+param+');"><IMG
src="tg.gif" ></a></div>'
....
document.write(fchaine);
}
-----------------------
function Suite(param) {
alert("test "+formulaire); <<<<<<<<<<< Ici rien ne va plus il est ecrit:
test [objet]
return false;
}