Jump to content

[SOLVED] Javascript Text


Crew-Portal

Recommended Posts

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>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.