This subject may have come up before but I couldn't find anything on the list group at http://www.geocrawler.com/lists/3/SourceForge/7120/0/ (which is a crappy search tool anyway, guess I'm just used to Deja) ... but I am trying to allow for text to change in an inline layer when a user types in text in a text box (this is a simplified example of what I need to do). Works in IE (of course) but not in NS 4.76. I am using DynAPI 2.53. Is this a now issue with Netscape or am I doing something incorrect? Thanks ======= <html> <head> <title>Example</title> <script language="Javascript" src="../src/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('../src/lib/') DynAPI.include('dynapi.api.*') DynAPI.include('dynapi.ext.inline.js') </script> <script language="Javascript"> DynAPI.onLoad=function() { theInlineLayer = this.document.all['layer1'] theInlineLayer.setVisible(true) } </script> </head> <body> <form> <table> <tr> <td bgcolor="cornsilk">Name : <input name="tbox" type="text" value="Testing" size="15"></td> <td bgcolor="cornsilk"><div id="layer1" style="position:relative; visibility:hidden;"></div></td> </tr> <tr> <td><input type="button" value="Show Text" onclick="theInlineLayer.setHTML(this.form.tbox.value);return false;"></td> </tr> </table> </form> </body> </html> _______________________________________________ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-dev