Here in my project i am using this reference to know my current name of td. Below i provided sample code similar to my project. "this" won't working in Mozilla. I am migrating my project to Mozilla . So please help me.
<html>
<head>
<script>
function f(a)
{
alert(a);
}
</script>
</head>
<body>
<table border="1">
<tr>
<td name="dfdsfs11111111" onclick="f(this.name)">sadasd</td>
<td name="dsfdsfsd222222" onclick="f(this.name)">asdasd</td>
</tr>
</table>
</body>
</html>