I made a HTML page which has to work in local. So no server, PHP or anything !
I've found a IP Calculator Script and try to get back the query parameter values that I've created on a form.
A wonderful way could be to have the direct answer in a onClick action... but is it possible ?
Currently, I'm at this point :
function show_alert() {
alert("Test");
}
<form name="form" action="others.html">
<!-- bla bla, with the table and so on -->
<input type="image" src="../images/go.png" onclick="show_alert();">
Currently, i've the alert but i lost the $get ...or i have the $get but i lost the alert ^^ Could you help me ?