I have a defined function that will set a string as a zip code (via prompt). It eventually leads to a url that would look similar to this
cheese.com/zipcode=90210&lang=eng
How would I get that string involved in zipcode?
My current solution is:
<a href="cheese.com/zipcode="+zipcode+"&lang=eng">
Not sure if that's correct but I completely forgot how to do that.
cheese.com/zipcode=90210&lang=eng
How would I get that string involved in zipcode?
My current solution is:
<a href="cheese.com/zipcode="+zipcode+"&lang=eng">
Not sure if that's correct but I completely forgot how to do that.