From: Mabel C. <mc...@ya...> - 2003-03-24 19:41:37
|
Mike, thanks for the previous bug fixes. I just got the latest version of the code from cvs today. I ran into another problem with using document.all.tags(). I get a "undefined is not a function", which is referring to tags(). So, the tags method is not supported? I have this small html page. <html> <body> <DIV id='ARSMenuDiv0'></DIV> <script language='Javascript'> var divObj = document.all.tags("div"); </script> </body> </html> Also, I ran into another variation of the problem, when my html contains nested tables (see below). I get an exception com.gargoylesoftware.htmlunit.ScriptException: specified cell could not be found in table <html> <body> <TABLE> <TR> <TD> <div id="DF2"> <table> <td> Submitter</td> <td width="164"> <input type="text" id="F2" name="F2"> </td> </table> </div> </TD> </TR> </TABLE> <script language='Javascript'> var divObj = document.all.tags("div"); </script> </body> </html> __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |