hi my dear friends :
i do not know what is going on my firefox!
my aspx and javascript codes are like this :
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<script type="text/javascript">
function a() {
alert('a');
//alert(event.which);
//alert(event.keyCode);
//alert(event.charCode);
}
function b() {
alert('b');
//alert(event.which);
//alert(event.keyCode);
//alert(event.charCode);
}
function c() {
alert('c');
//alert(event.which);
//alert(event.keyCode);
//alert(event.charCode);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" onkeyup="a()"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" onkeydown="b()"></asp:TextBox>
<asp:TextBox ID="TextBox3" runat="server" onkeypress="c()"></asp:TextBox>
</div>
</form>
</body>
</html>
when i type something in textbox 1,2,3 so i see just first alert (mean a,b,c).
what is the problem ?
thanks in future advance...