M
Mathias Fritsch
I try to run the following code, but no onblur/onfocus events happen.
Is onfocus/onblur implemented in ie/firefox?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<form>
<TABLE BORDER="1"
onFocus="alert('This is the Example Table')"
onBlur="alert('This is the Example Table')"
onClick="alert('This is the Example Table')"<TR>
<TD>Cell Data</TD>
<TD>Cell Data<input type=button value=sometext ></TD>
</TR><TR>
<TD>Cell Data</TD>
<TD>Cell Data</TD>
</TR>
</TABLE>
<TABLE BORDER="1"
onFocus="alert('This is the Example Table')"
onBlur="alert('This is the Example Table')"<TR>
<TD>Cell Data</TD>
<TD>Cell Data<input type=button value=sometextothertext ></TD>
</TR><TR>
<TD>Cell Data</TD>
<TD>Cell Data</TD>
</TR>
</TABLE>
</form>
</body>
</html>
Is onfocus/onblur implemented in ie/firefox?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<form>
<TABLE BORDER="1"
onFocus="alert('This is the Example Table')"
onBlur="alert('This is the Example Table')"
onClick="alert('This is the Example Table')"<TR>
<TD>Cell Data</TD>
<TD>Cell Data<input type=button value=sometext ></TD>
</TR><TR>
<TD>Cell Data</TD>
<TD>Cell Data</TD>
</TR>
</TABLE>
<TABLE BORDER="1"
onFocus="alert('This is the Example Table')"
onBlur="alert('This is the Example Table')"<TR>
<TD>Cell Data</TD>
<TD>Cell Data<input type=button value=sometextothertext ></TD>
</TR><TR>
<TD>Cell Data</TD>
<TD>Cell Data</TD>
</TR>
</TABLE>
</form>
</body>
</html>