I've been struggling with the following for the last 48 hours and I'm hoping someone here can dig me out of a hole;
window.open("process.php?page=g&zipcode=" + zipcode); <- I need to add a second variable to the end of this URL. I know that if I do this window.open("process.php?page=g&zipcode=" + zipcode + id); adds the variable but annoyingly directly after the first one. What I need is for it to look like this:
process.php?page=g&zipcode=33001&id=63423563
the bit I can't get is how to add the "&id=" inbetween the variables.
I really hope that make sense.
Thanks in advance