vote up 0 vote down star

I want to create a simple button that will inject a [b][/b] into a textarea.

How can I do this?

flag

43% accept rate

3 Answers

vote up 3 vote down check

This link should help you out:

http://www.webmasterworld.com/forum91/4686.htm

link|flag
vote up 2 vote down

Your question is tagged jQuery, so I assume you're using it:

HTML:

<button id="mybutton>Bold</button>
<textarea id="mytextarea"></textarea>

JS:

$('mybutton').click(function(){
    $('#mytextarea').append('[b][/b]');
});

Of course, a real BBCode implementation with the ability to surround highlighted text with [b] tags, and/or append [b] upon the first click of the button and [/b] upon the second, is another problem entirely.

link|flag
You can check out this link on solutions for getting selected text from a textarea. corpocrat.com/2008/08/… – WesleyJohnson Oct 24 at 5:21
vote up 0 vote down

Are you looking to bold the entire text area or only a segment of text with in the text area?

link|flag
either where the cursor is or what is currently selected. – mrblah Oct 23 at 22:10
Well with a TextArea, I think you're going to have a problem as I've yet to find a way to get html tags like "<b></b>" work inside the value element. – Aizotu Oct 24 at 0:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.