| Author |
variable to javascript
|
Nauman Khan
Ranch Hand
Joined: Aug 07, 2003
Posts: 49
|
|
Hi, I am simply producing an html page with javascrpt from Servlet and passing a variable to javascript String name="hello"; alert("alert("+name+");"); As I know about Servlet is server site and javascript is client side but if it doesn't work and get the error, Does anybody know if i have to pass the value from Servlet to javascript then what is the other way to do it? Regards,
|
Nauman Khan <br />SCJP,MCSE,SCWCD,SCBCD,SCWCD1.4
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
|
|
Since JavaScript is just text, you simply write the desired value with the rest of the text. You will have to pay attention to escaping the quote marks. Bill
|
 |
 |
|
|
subject: variable to javascript
|
|
|