<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Untitled Page</title> <script type="text/javascript"> function Iterate() { var tv = document.getElementById("tv1");
Curve(tv); }
function Curve(p) { for(var i=0;i<p.childNodes.length;i++) { var tc = p.childNodes[i]; if(tc.tagName=="TABLE") { var a = tc.rows[0].cells[tc.rows[0].cells.length-1].firstChild; alert(a.getAttribute("title")); } else if(tc.tagName=="DIV") { Curve(tc); } } } </script> </head> <body> <form id="form1" runat="server"> <div> <input type="button" value="Iterate" onclick="Iterate()" />