MyBB Community Forums

Full Version: Append quick reply window
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.

I'm trying to display a quick reply window under a target post when click a reply button.

ex)
POST A  
POST B
POST C

click a reply button of .A
then

POST A
[ quick reply window]
POST B
POST C

In thread.js . I made this code.

var quickreply = "<textarea> quickreply </textarea>";  
$('#post_' + pid).append(quickreply);


this works. but I want to send data to newreply.php.

Is there any way?