MyBB Community Forums

Full Version: spiler feature
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i add spoiler feature in my forum
Take a look here:

http://mods.mybb.com/view-resource/spoiler-tag

Edit:

@vern sorry didn't saw your post Smile
it show button for spoiler
http://gyazo.com/d05bb176a2bec6aaeb9909070312750f

i want show text instead button
(2012-05-27, 11:08 AM)amanta Wrote: [ -> ]it show button for spoiler
http://gyazo.com/d05bb176a2bec6aaeb9909070312750f

i want show text instead button

Try second link which i posted.
http://mods.mybb.com/view-resource/spoiler-tag
(2012-05-27, 11:10 AM)JovanJ. Wrote: [ -> ]
(2012-05-27, 11:08 AM)amanta Wrote: [ -> ]it show button for spoiler
http://gyazo.com/d05bb176a2bec6aaeb9909070312750f

i want show text instead button

Try second link which i posted.

same thing in your Sad
http://mods.mybb.com/view-resource/spoiler-tag
Try adding a MyCode such as the follwoing:

Pattern

\[spoiler\](.*?)\[/spoiler\]

Replacement

<div><strong>Spoiler:</strong> <input type="button" value="Show"  onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }" /></div><div class="quotecontent"><div style="display: none;">$1</div></div>