Re: copying javascript variable to JSP variable

2001-04-09 Thread Hamid
to:[EMAIL PROTECTED]]On Behalf Of Warty, Koustubh Sent: Monday, April 09, 2001 8:29 PM To: [EMAIL PROTECTED] Subject: copying javascript variable to JSP variable Hello all, I call a javascript function funct1() in that function I get a value of a variable x as : function funct1() { va

Re: copying javascript variable to JSP variable

2001-04-09 Thread Mayuresh Kadu
well ... u could also try www.jsptags.com for something called as J2J tags (Javascript to JSP) Mayuresh - Original Message - From: "Dubreuil, Jason" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 09, 2001 21:45 Subject: Re: copying javascript va

Re: copying javascript variable to JSP variable

2001-04-09 Thread Dubreuil, Jason
ril 09, 2001 11:29 AM To: [EMAIL PROTECTED] Subject: copying javascript variable to JSP variable Hello all, I call a javascript function funct1() in that function I get a value of a variable x as : function funct1() { var x = document.all.hid1.value // gets value of the hidden field fro

Re: copying javascript variable to JSP variable

2001-04-09 Thread Gopi Mandava
This should work: var x = document.all.hid1.value; window.open('http://abc?nam='+x, 'win1', 'other parameters'); >Hello all, > I call a javascript function funct1() in that function I get a > value of a variable x as : > > >function funct1() >{ > var x = document.all.hid1.value // gets

copying javascript variable to JSP variable

2001-04-09 Thread Warty, Koustubh
Hello all, I call a javascript function funct1() in that function I get a value of a variable x as : function funct1() { var x = document.all.hid1.value // gets value of the hidden field from a form window.open('http://abc?nam=<%= val %>, 'win1', 'other p