howtothings.co.uk

Full Version: How to add spoiler tags to your forum [MyBB 1.4 / 1.6 / 1.6.4]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to add spoiler tags to your forum [MyBB 1.4 / 1.6 / 1.6.4]

A really easy way to add [spoiler] tags to your forum.

1) Go to your Admin CP > Configuration > MyCode > Add new MyCode

Title: Spoiler
Short Description: Spoiler
Regular Expression:
Code:
\[spoiler\](.*?)\[/spoiler\]
Replacement:
Code:
<div style="margin:20px; margin-top:5px"><div class="quotetitle"><input class="button2 btnlite" type="button" value="View Spoiler" style="text-align:center;width:115px;margin:0px;padding:0px;" 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 Spoiler'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'View Spoiler'; }" /></div><div class="quotecontent"><div style="display: none;">$1</div></div></div>
Enabled: Yes

You could add the replacement to your CSS file and link it that way but this is the easy way.

Result: [spoiler]This is a spoiler[/spoiler]
I liked it before