Closed Thread
Results 1 to 2 of 2

Thread: TextBox Insert

  1. #1
    Bioshox is offline Programmer
    Join Date
    Oct 2009
    Location
    Manchester, UK
    Posts
    196
    Rep Power
    10

    TextBox Insert

    Hey guy

    Okay, I want to add <b> </b> tags into a textbox without removing the current text there

    I currently have the code

    Code:
    <script type="text/javascript" language="javascript"><!--
    
    function ChgText()
    {
       var MyElement = document.getElementById("content");
       MyElement.value = "<b>  </b>";
    
       return true;
    }
    
    //--></script>
    	
    	<p>
    	<form action='addpost.php' method='post'>
    	<h3>Title:</h3>
    	<input type="button" onclick="ChgText()" value="b"/><br/>
    	<input type='text' name='title' size='63.5' /><br>
    	<h3>Body:</h3> 
    	<textarea id='content' name='content' rows='15' cols='50'></textarea>
    	<br>
    	<input type='submit' name='submit' value='Publish' />
    	</p>
    What need's adding to this to make it work correctly?

    Thanks
    Shox.

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #2
    Bioshox is offline Programmer
    Join Date
    Oct 2009
    Location
    Manchester, UK
    Posts
    196
    Rep Power
    10

    Re: TextBox Insert

    Anyone D:?

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to insert variable to textbox using JavaScript?
    By system32 in forum JavaScript and CSS
    Replies: 3
    Last Post: 10-14-2011, 01:17 PM
  2. Can't take value from textbox
    By socheata in forum PHP Development
    Replies: 6
    Last Post: 09-24-2010, 03:17 AM
  3. Textbox Value
    By Bioshox in forum PHP Development
    Replies: 6
    Last Post: 02-27-2010, 02:11 PM
  4. Replies: 8
    Last Post: 11-30-2008, 10:22 PM
  5. textbox to listview
    By Siten0308 in forum C# Programming
    Replies: 13
    Last Post: 11-05-2008, 03:46 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts