questo ti fa vedere i campi come vuoi tu:Originariamente inviato da br1
Fretta?![]()
Quando esegui il submit il form non esiste ancora.... metti lo script dopo il tag </form>
ciao
width = screen.width;
height = screen.height;
document.write("<input type=text name=\"height\" value=\""+width+"\"");
document.write("<input type=text name=\"width\" value=\""+height+"\"");
sostituisci tutto questo:
width = screen.width;
height = screen.height;
document.write("<input type=hidden name="height" value=\"");
document.write(height);
document.write("\"</>");
document.write("<input type=hidden name="width" value=");
document.write(width);
document.write("</>");
con quello sopra e dovrebbe funzionare
ciao

Rispondi quotando