hello I have this
var test06 = 'blahblahblahblah;
function test(mode){
alert(mode);
}
....onclick=javascript:test(test06);
how would i make it alert the value of the already declared variable as oposed to what is and assigning the literal text 'test06' to the alert box. i need to make the alert box declare blahblalahblah
this is far from what i am doing but figured this would be most simplest explained thank you
var test06 = 'blahblahblahblah;
function test(mode){
alert(mode);
}
....onclick=javascript:test(test06);
how would i make it alert the value of the already declared variable as oposed to what is and assigning the literal text 'test06' to the alert box. i need to make the alert box declare blahblalahblah
this is far from what i am doing but figured this would be most simplest explained thank you