| | |
simple ajax script problem
Please support our JavaScript / DHTML / AJAX advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Jun 2007
Posts: 2
Reputation:
Solved Threads: 0
HI,
Im new here so hello all!
Im having this problem with a v simle ajax script.
Heres the code:
Now all it should do is go off and get the message from the server and
put the text back in the textbox div. Now the edit_message.php script
works fine on itw own and returns what it should. Ive also looked at
the source and the right value is in the hidden input.
Problem is when you click on the edit button nothing happens!
can anyone spot my problemo??
Im new here so hello all!
Im having this problem with a v simle ajax script.
Heres the code:
JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)
<html> <head> <title>test page</title> <script type="text/javascript" src="text-utils.js"></script> <script language="javascript" type="text/javascript"> var request = null; function createRequest() { try { request = new XMLHttpRequest(); } catch (trymicrosoft) { try { request = new ActiveXObject("Msxml2.XMLHTTP"); } catch (othermicrosoft) { try { request = new ActiveXObject("Microsoft.XMLHTTP"); } catch (failed) { request = null; } } } if (request == null) alert("Error creating request object!"); } function get_message() { var message_id = document.getElementById("message_id").value; createRequest(); var url = "edit_message.php?message_id=" + escape(message_id); request.open("GET", url, true); request.onreadystatechange = open_message; request.send(null); } function open_message() { if(request.readystate == 4) { var message_txt = request.responseText; var message_area = document.getElementById("message_text"); replaceText(message_area, message_txt); } } </script> </head> <body> <table style="float: left; width: 30px; background-color: red;"> <?php require_once('../mysql_connect.php'); $sql = "SELECT * FROM message ORDER BY message_id"; $query = mysql_query($sql); while($row = mysql_fetch_assoc($query)) { $message = $row['message']; $author = $row['author']; $message_id = $row['message_id']; ?> <tr> <td><?php echo $message; ?></td><td><span style="color: red; font-weight: bold;"><?php echo $author; ?></span></td><td> <form method="GET"> <input type="hidden" id="message_id" value="<?php echo $message_id; ?>"> <input type="button" value="edit" onClick="get_message();" /></td> </form> </tr> <?php } ?> </table> <div style="float: left; width: 400px; margin-left: 20px; height: 400px; background-color: blue;" id="textbox"> <p id="message_text">some text</p> </div> </body> </html>
Now all it should do is go off and get the message from the server and
put the text back in the textbox div. Now the edit_message.php script
works fine on itw own and returns what it should. Ive also looked at
the source and the right value is in the hidden input.
Problem is when you click on the edit button nothing happens!
can anyone spot my problemo??
![]() |
Similar Threads
- how can i pass a value from java script to JSP scriplet (JSP)
- Ajax Question (ASP.NET)
- Simple AJAX with xml (JavaScript / DHTML / AJAX)
- problem in css->overflow:scroll (JavaScript / DHTML / AJAX)
- File upload problem (PHP)
- A simple perl script (Perl)
- simple cgi script issue (Python)
- Simple answer for vexing problem? (OS X)
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: Opening New Blank Window from within Pop-up
- Next Thread: Connecting To External Javascript File
| Thread Tools | Search this Thread |
acid2 ajax ajaxexample ajaxhelp ajaxjspservlets animate array automatically beta box browser captchaformproblem cart child close codes column css date debugger decimal dependent design disablefirebug dom download element embed engine enter error events ext file firefox focus form forms frameworks getselection google gwt gxt hiddenvalue highlightedword hint html htmlform ie7 ie8 iframe index java javascript javascripthelp2020 jawascriptruntimeerror jquery jsp jump libcurl listbox maps masterpage math media menu microsoft mimic mp4 onmouseoutdivproblem onmouseover onreadystatechange paypal pdf php player position post problem programming prototype redirect safari scale scriptlets scroll search security select software sql toggle unicode variables w3c web website window windowofwords \n





