Crew-Portal Posted August 2, 2007 Share Posted August 2, 2007 So far I got a script to change text into an edit box for incorperation into mysql but...Can you change the Form Function using javascript. And the action of the text box so Upon clicking edit it changes the function to a PHP script that edits information on a mysql database and changing the Edit button to saying something like Save? This is What I Got so Far::: <form id="actionform"> <div id="body"><?php echo ($mysql_query()); ?></div> <input type="button" onmouseup="cvert('body')" id="actionbutton" value="Edit!"/> </form> <script type="text/javascript"> function cvert(e) { box = document.getElementById(e); ab = document.getElementById("actionbutton"); box.innerHTML = '<textarea name="body_content">' + box.innerHTML + '</textarea>'; ab.onmouseup = 'document.getElementById("actionForm").submit()'; } </script> Quote Link to comment Share on other sites More sharing options...
Crew-Portal Posted August 2, 2007 Author Share Posted August 2, 2007 Nvm I got it figured out! TOPIC SOLVED!!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.