hice esto pero aun asi no me da:
Código:
<script src="../js/jquery-1.3.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btnentrar").keypress(function(event)
{
user = $("#txtusuario").val();
pass = $("#txtpass").val();
$("#mensaje").load("login_m.php",
{
'user':user,
'pass':pass
});
});
$('#btnentrar').click(function(){
$('#btnentrar').keypress();
});
});
</script>
Agrego el formulario porsiak
Código:
<form id="form1" name="form1" method="post" action="#">
<table width="223" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="67" height="25" class="festilo2">Usuario:</td>
<td width="29" > </td>
<td width="144" > <input type="text" name="txtusuario" id="txtusuario" size="24" maxlength="12" tabindex="1"/></td>
</tr>
<tr>
<td class="festilo2">Pass:</td>
<td> </td>
<td><label>
<input type="password" name="txtpass" id="txtpass" size="24" maxlength="12" tabindex="2"/>
</label></td>
</tr>
<tr>
<td colspan="3"><div align="center">
<label>
<input type="button" name="btnentrar" id="btnentrar" value="Entrar" tabindex="3"/>
</label>
</div>
</td>
</tr>
</table>
<div id="mensaje" align="center"></div>
</form>
humm de esta forma si coloco enter o doy click debería funcionar pero no lo hace TT___TT