Fehlermeldung bei Inputfeld

bauchinj

Erfahrenes Mitglied
Hallo!

Ich bekomme folgende Fehlermeldung, wenn ich in ein stinknormales Input-Feld einen Text eingebe:

Code:
[Exception... "'JavaScript component does not have a method named: "invalidate"' when calling method: [nsIAutoCompletePopup::invalidate]" nsresult: "0x80570030 (NS_ERROR_XPC_JSOBJECT_HAS_NO_FUNCTION_NAMED)" location: "<unknown>" data: no]

HTML:
<form>
   <input name="username" type="text">
</form>

Funktionalität ist zwar gegeben, allerdings verlangsamt sich das Programm deutlich!

Beste Grüße
 
Hi,

ich schätze mal, dass du uns hier schon dein Javascript zeigen mußt, das die Fehlermeldung auswirft.

mfg Maik
 
PHP:
<?php
session_start();
$PHPSESSID = session_id();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Titel</title>
</head>

<?php
if($_POST['login'] == "login"){    
    include('php/config.inc.php');
}
else{
?>
<body>
<form name="login" id="login" method="post">
<form>
<div class="login">
<table>
<?php
if($_GET['login'] == "error")
{    ?><tr><td colspan="2">ERROR</td></tr>
    <?php
}
else
{    ?><tr><td colspan="2" class="loginHeadline">Login</td></tr>
    <?php
}?>
<tr>
    <td>Benutzername</td>
    <td><input name="user" type="text" class="loginUser" /></td>
</tr>
<tr>
    <td>Password</td>
    <td><input name="password" type="password" class="loginPass" /></td>
</tr>
<tr><td colspan="2"><input type="submit" name="login" value="login" class="loginSubmit" /></td></tr>
</table>
</form>
<?php    }?>
</div>
</body>
</html>
 
Zurück