Jump to content

[SOLVED] onclick post into text box


daveoffy

Recommended Posts

<html>
<head>
<script type="text/javascript">

function addText (fieldID, textStr)
{
    document.getElementById(fieldID).value = textStr;
}
</script>
</head>

<body>
<img src="image.jpg" onclick="addText('foo', '<b>bar</b>');"><br>
Field Foo: <input type="text" name="foo" id="foo">

</body>
</html>

Link to comment
Share on other sites

*EDIT*FIXED! I forgot to set id="editor"

 

Thank you for the help

*EDIT*

 

 

It does not work. This is what I have.

 

editjs.php

<script type="text/javascript">

function addText (fieldID, textStr)
{
   document.getElementById(fieldID).value = textStr;
}
</script>

 

the editor page content

 

<div align="center">
<img src="image.jpg" onclick="addText('editor', 'hi');">
<form method=post action="<?php echo $_SERVER['REQUEST_URI'] ?>"><textarea name="editor" class="editor_box"><?php echo $loadcontent ?></textarea></div>
<br>
<div style="float: right;"><input type="submit" name="save_file" value="Save"></div>
</form>

 

and yes I did include it.

*EDIT*

FIXED! I forgot to set id="editor"

 

Thank you for the help

*EDIT*

 

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.