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
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 …
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
The End.
shaikhanu