Question : jQuery Get TD values with only TR id

I have a table row like this:

<tr id="some_id"><td>some value 1</td><td>some value 2</td><td>some value 3</td></tr>

How can I get the value of the 3 TD cells?

and then fade out the TR?

Answer : jQuery Get TD values with only TR id

Check this too :

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="javascript" src="jquery.js"></script>
<script language="javascript">
	var price;
	var quant;
	var total;
	var tds = [];
	$(document).ready(function() {
		$("#some_id td").each(function(index) {
			tds[index] = $(this).text();
		}).fadeOut();
		price = tds[0];
		quant = tds[1];
		total = tds[2];
	});
</script>
</head>
<body>
<table>
<tr id="some_id"><td>some value 1</td><td>some value 2</td><td>some value 3</td></tr>
</table>
</body>
</html>
Random Solutions  
 
programming4us programming4us