Text randomizer
3 posters
Page 1 of 1
Text randomizer
Hope this is the right section
Anyways, I wanted to know if there's a way to randomize the text that shows in a forum description. Like it'll change each time the forum is refreshed.
Anyways, I wanted to know if there's a way to randomize the text that shows in a forum description. Like it'll change each time the forum is refreshed.
Re: Text randomizer
Hi @Derp-chan,
You can usually achieve this with some JavaScript. Paste the following code wherever HTML allows scripts to format. Such as an HTML page, module, description, etc..
It's pretty self explanatory. All you need to do is edit the message variable which contains an array of strings. If you want to add more, simply add a comma after the last message and create a new string with quotes.
You can usually achieve this with some JavaScript. Paste the following code wherever HTML allows scripts to format. Such as an HTML page, module, description, etc..
- Code:
<script type="text/javascript">//<![CDATA[
(function() {
var message = [
'Message 1',
'Message 2',
'Message 3'
];
document.write(message[Math.floor(Math.random() * message.length)]);
})();
//]]></script>
It's pretty self explanatory. All you need to do is edit the message variable which contains an array of strings. If you want to add more, simply add a comma after the last message and create a new string with quotes.
Re: Text randomizer
Topic solved and archived


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.

» Background Randomizer?
» Site description randomizer
» RPG Module Character Sheet Problem - Text/list text invisible
» Rok needs some help with changing link text color and alternating text links
» Can you create special text or use a picture of text for your forum title?
» Site description randomizer
» RPG Module Character Sheet Problem - Text/list text invisible
» Rok needs some help with changing link text color and alternating text links
» Can you create special text or use a picture of text for your forum title?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum