Hi
I have a html page with javascript in it that assigns a set of coordinates to javascript variables. The question I have is how can I then send these variables to a Perl CGI script using a submit on a html form.
An example of some of the code below:
var map;
var geocoder = null;
var addressMarker;
var originpoint = null;
....................
function showAddress(address) {
if (geocoder) {
geocoder.getLatLng(address,
function(point1) {
if (!point1) {
alert(address + " not found");
} else {
if (addressMarker) {
map.removeOverlay(addressMarker);
}
addressMarker = new GMarker(point1);
map.setCenter(point1, 15);
map.addOverlay(addressMarker);
originpoint = point1;
alert("origin is now: "+originpoint+" destination is now
+: "+destinationpoint);
}
}
);
}
}
<body onload="load()" onunload="GUnload()">
<form action="#" onsubmit="showAddress(this.address.value); return
+ false">
<p>
Origin:<input type="text" size="50" id="addressInput" name="address"
+value="London, UK" />
<input type="submit" value="Show Origin" />
</p>
</form>
Now I want to be able to store the variable "originpoint" and using another form to submit it to the perl CGI script. Any ideas?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.