is it possible?
basically i'm a trying to achieve something like this
JSON.stringify("address=",Obj_address,Obj_city,Obj_state,Obj_zip)
after stringify
to become like
address= "Address city state zip"
in a string like fashion. Reason being is I'm trying to pass this string into my google geocoding url api.
I played around and it so far only 1 parameter can be passed.
Help appreciated and thanks
JSON.stringify({address:Obj_address, city:Obj_city, state:Obj_state, zip:Obj_zip});?:between names and values, not=.