Hi
If i wanted to add 2 suppose name and id values to URL.
How can i do that using JavaScript?
Suppose we have URL
http://localhost/demo/
then how to add these 2 parameters...
Thanks..
Hi
If i wanted to add 2 suppose name and id values to URL.
How can i do that using JavaScript?
Suppose we have URL
http://localhost/demo/
then how to add these 2 parameters...
Thanks..
"http://localhost/demo/" + "?name=" + escape(name_var) + "&id=" + escape(id_var)