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
~332 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for shaikhanu

Loading Page in Specific Div using AHAH - http://microformats.org/wiki/rest/ahah but unable to execute script Main.html <html> <head><title>Main Page</title></head> <script type="text/javascript" src=GetPage.js> </script> <body> <form method=get onsubmit="load('History.html','GetDiv'); return false;"> <input type="text" name="quota" value=""> </form> <div id="GetDiv"> </div> </body> </html> GetPage.js function ahah(url,target) { document.getElementById(target).innerHTML = 'loading data...'; if (window.XMLHttpRequest) { req …

Member Avatar for Member #210412
0
233
Member Avatar for leroi green

Gr8!!! The script works great. i was able to load the history.html in a specific div onclick="load('history.html','div')" History.html ============= <html> <head><title></title></head> <body> <p>TEST</p> <script language="javascript"> document.write("Test"); </script> </body> </html> The history page loads successful but the script under the page does not execute. Please Help

Member Avatar for shaikhanu
0
99

The End.