Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

javscript form editing


ghost's Avatar
0 0

i posted this a while ago. didnt get to much help. yhought id try one more time. to edit the form with javascript wouldnt the command be…

javascript:void(document.forms[0].INPUT.value="myemail@domain.com");

????? i try this but for some reason it does not send the info to my email. any help or tips would be greatly appriciated! :)


ghost's Avatar
0 0

Rhs_basketballer wrote: i posted this a while ago. didnt get to much help. yhought id try one more time. to edit the form with javascript wouldnt the command be…

javascript:void(document.forms[0].INPUT.value="myemail@domain.com");

????? i try this but for some reason it does not send the info to my email. any help or tips would be greatly appriciated! :)

Try this:

javascript:alert(document.getElementsByTagName('input')[1].value='hello@world.net');

But first find the number at the "inputs". Hmm.. You can test the input field with: alert(document.getElementsByTagName('input')[?].name);

If it alerts the value you want, then edit it, like this: javascript:alert(document.getElementsByTagName('input')[1].value='hello@world.net');

Hope you understand, i'm from Denmark! :whoa: