Andy11548 Posted August 13, 2012 Share Posted August 13, 2012 Hello, I'm trying to create a button that will put text into a <textarea>. I've got this half working, so when I press the Button it puts in <textarea> [b][/b] </textarea> However, if I delete that or type something else, when I press the button again, it does nothing. Could anyone help? $('#bbcode_bold').click(function() { $('#topicMessage').append('[b][/b]'); }); Quote Link to comment https://forums.phpfreaks.com/topic/267010-jquery-append-help/ Share on other sites More sharing options...
cs.punk Posted August 13, 2012 Share Posted August 13, 2012 I think you accidentally marked this as solved. If I guessed correctly you want to surround the current text in the textarea to be surrounded with those tags? I'm guessing you'd need to prepend it first with '' and then append it with ''. Quote Link to comment https://forums.phpfreaks.com/topic/267010-jquery-append-help/#findComment-1368960 Share on other sites More sharing options...
Andy11548 Posted August 13, 2012 Author Share Posted August 13, 2012 Nope, I solved what I wanted, however, you've managed to read my mind on what I need help with next. How would I make it get the highlighted text from the textarea and output it into a variable? I've done quite a bit of research on this and have not found a solution to this yet. If you could help me with this it would be greatly appreciated. Thanks, Andy. Quote Link to comment https://forums.phpfreaks.com/topic/267010-jquery-append-help/#findComment-1368970 Share on other sites More sharing options...
Christian F. Posted August 13, 2012 Share Posted August 13, 2012 I think you'll find this google search quite interesting. Quote Link to comment https://forums.phpfreaks.com/topic/267010-jquery-append-help/#findComment-1369151 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.