Site description randomizer
3 posters
Page 1 of 1
Site description randomizer
Hello, I am here today again to ask for help on a site description randomizer, Where the site description's text will change once a page refreshes. I have tried this code but it did not work
I think I was using one for a different PHP. maybe a Phpbb2 or something other than Phpbb3 ( I'm using Phpbb3 by the way ) and I just couldn't get it to work.. Is this for Phpbb3? Or am I just doing something wrong?
- 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>
I think I was using one for a different PHP. maybe a Phpbb2 or something other than Phpbb3 ( I'm using Phpbb3 by the way ) and I just couldn't get it to work.. Is this for Phpbb3? Or am I just doing something wrong?
Last edited by Bloxx on September 21st 2016, 11:13 pm; edited 1 time in total
Re: Site description randomizer
When posting codes, please use the code tags.


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.
Re: Site description randomizer
ok, remove your code and try with this:
- Code:
$(function(){
var a = document.getElementById('phpbb'),
b = document.getElementById('logo-desc'),
c = [
'Message 1',
'Message 2',
'Message 3',
'Message 4',
'Message 5',
'Message 6',
'Message 7'
];
a && b && (b.lastChild.textContent= c[Math.floor(Math.random() * c.length)]);
});
Ch@lo Valdez- Forumember
-
Posts : 138
Reputation : 50
Language : spanish
Re: Site description randomizer
Problem solved & topic 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.

» How to change site name site and description to >
» is it pos to put a link to are other site in the Site description * :
» RE -is it pos to put a link to are other site in the Site description *
» Site description CSS?
» Site description
» is it pos to put a link to are other site in the Site description * :
» RE -is it pos to put a link to are other site in the Site description *
» Site description CSS?
» Site description
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum