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
https://forums.phpfreaks.com/topic/63084-solved-javascript-text/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.