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.
question about javascript....
Hey, I am trying to learn me some javascript. Injections and are exprementig with forms and tabels. Lets say I have this form:
<span class="jsdesc">admin?</span>
<input type="text" name="admin" value="no" readonly="readonly" style="text-align:center"; size="3"><br>
<input type="submit" value="submit">
</form>```
Then can I use this line to get the no to yes:
javascript:void(document.forms[0].admin.value="yes");
But if I have a form like this:
```markup
<form action="" method="post">
<select name="user">
<option value="newguy" name="newguy">newguy
<option value="standarduser" name="standarduser">standarduser
<option value="hid" name="hid">his
</select>
<br>
<input type="submit" value="Submit Username">
</center>
</form>
And want to change the names there with javascript. Eks. hid goes to admin. How can I do that? Thanks for helping me out here.