aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes cell value 'undefined' Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply locked New topic
Author

cell value 'undefined'

puja shaw
Ranch Hand

Joined: Nov 06, 2012
Posts: 32
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
    
    6
because td elements do not have values.

Eric
puja shaw
Ranch Hand

Joined: Nov 06, 2012
Posts: 32
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
    
    6
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
    
  13

"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]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: cell value 'undefined'
 
Similar Threads
Data truncation: Truncated incorrect DOUBLE value:
unable to get form Parameters
A problem in hiding a button
send variable value from one servlet to another servlet for itext pdf
How to call the servlet without form action