Tes,
Since the form will be loaded in each postbit you'll have to give each form a unique ID for the toggle function. You can easily do that by using the $post[postid] variable.
In the QuickPM html find:
Code:
<input name="r2" type="button" class="bginput" value="QuickPM" onClick="toggleT('qpm','s')">
Replace with:
Code:
<input name="r2" type="button" class="bginput" value="QuickPM" onClick="toggleT('q$post[postid]','s')">
Find:
Code:
<div id="qpm" style="VISIBILITY: hidden; POSITION: absolute">
Replace with:
Code:
<div id="q$post[postid]" style="VISIBILITY: hidden; POSITION: absolute">
Find:
Code:
<input name="r2" type="button" class="bginput" value="Hide" onClick="toggleT('qpm','h')">
Replace with:
Code:
<input name="r2" type="button" class="bginput" value="Hide" onClick="toggleT('q$post[postid]','h')">
That should do it.
BTW, you should check out Quick Quote II.. Its much better than the first Quick Quote hack. There's a link to it in my profile.
Later,
Dewayne