No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Hi I was wondering if there is a standard way to set a time out for ajax callbacks. The problem seems such an obvious one I know that it will have been solved several times. I'm using the google maps and google local api's and I want to wrap my …
give your table elements id's then use innerHTML to reference those id's from java script to change their contents. For example have a play with the following [CODE]<html> <head> <script> function change1() { document.getElementById('element1').innerHTML = "Goodbye"; } </script> </head> <body> <table> <tr><td id="element1">hello</td><td>to</td></tr> <tr><td>whole</td><td onmouseover="change1()">world</td></tr> </table> </body> </html>[/CODE]
The End.
paulernest