1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-16 19:44:00 +02:00
This commit is contained in:
Jakub Vrana
2010-10-17 01:52:47 +02:00
parent 53804a2c20
commit 420faa3dc4
3 changed files with 5 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ function selectValue(select) {
* @return HTMLElement
*/
function formField(form, name) {
// required in old IE, maybe can be rewritten as form.elements[name]
for (var i=0; i < form.length; i++) {
if (form[i].name == name) {
return form[i];