Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~429 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for paulernest

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 …

Member Avatar for paulernest
0
101
Member Avatar for rbsplat

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]

Member Avatar for rbsplat
0
328

The End.