| Author |
cell value 'undefined'
|
puja shaw
Ranch Hand
Joined: Nov 06, 2012
Posts: 32
|
posted

0
|
the problem is that when i i am trying to get the cell value its showing 'undefined value'.What is the problem and how to get the value?
[code=html]
<html>
<form action="seecookies">
<table onClick="Clicking();">
<tr id="cookierow">
cookie value: mypassword
<td>+"mypassword"+</td>
cookie value: myUsername
<td>+"myUsername"+</td>
<script>
function Clicking(){
alert("infunction");
var row=document.getElementById("cookierow");
alert("infunction2");
var cells =
row.getElementsByTagName("td");
alert("infunction3");
alert("infunction4");
alert(cells.val());
alert("infunction5");}
</script>
</form>
</html>
[code]
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
posted

0
|
because td elements do not have values.
Eric
|
 |
puja shaw
Ranch Hand
Joined: Nov 06, 2012
Posts: 32
|
posted

0
|
Eric Pascarello wrote:because td elements do not have values.
Eric
next time when you point out the mistake ,kindly tell me where and how to solve it.Thankyou.
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
posted

1
|
puja shaw wrote:next time when you point out the mistake ,kindly tell me where and how to solve it.Thankyou.
Maybe next time I will not answer your question. Remember that we are helping you for free, so you get free advice.
If it was worded more like. "Thank you for pointing out my problem, can you please tell me how to to get the text of an element?"
I would be more inclined to tell you how.
Eric
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56185
|
posted

0
|
|
"puja shaw", please check your private messages for an important administrative matter. Thanks.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: cell value 'undefined'
|
|
|