How to show/hide who is online?
3 posters
Page 1 of 1
How to show/hide who is online?
How can I add a show/hide button for "who is online?" section?
Last edited by iamthestreets on January 17th 2012, 10:47 pm; edited 1 time in total
Re: How to show/hide who is online?
Rideem3 wrote:Do you want to automatically hide it, and then have a button to show it?
Or do you want to show it a add a button that will hide it?
Automatically hide it, and then have a button to show it.
Re: How to show/hide who is online?
This:
Can be shortened to this:
Which would mean changing this:
to this:
less code = better
A toggling function is better than having two seperate function. Also, you don't need to start a jQuery function within a Javascript function as this function does not require the DOM to be loaded. (well it does, but it will only execute on click ... so it doesn't)
- Code:
<script type="text/javascript">
function showstats() {
$(document).ready(function() {
$('.hiddenstat').show('slow');
});
document.getElementById('showS').style.display = "none";
document.getElementById('hideS').style.display = "inline-block";
}
function hidestats() {
$(document).ready(function() {
$('.hiddenstat').hide('slow');
});
document.getElementById('showS').style.display = "inline-block";
document.getElementById('hideS').style.display = "none";
}
</script>
Can be shortened to this:
- Code:
<script type="text/javascript">
function togglestats() {
var x=document.getElementById('showS').style.display = "none";
if (x.style.display!='none') {
$('.hiddenstat').show('slow');
x.style.display = "none";
document.getElementById('hideS').style.display = "inline-block";
} else {
$('.hiddenstat').hide('slow');
x.style.display = "inline-block";
document.getElementById('hideS').style.display = "none";
}
</script>
Which would mean changing this:
- Code:
<input type="button" value="Show Statistics" onclick="showstats()" id="showS"/><input style="display: none;" type="button" value="Hide Statistics" onclick="hidestats()" id="hideS" /></span>
<!-- END switch_viewonline_link -->
to this:
- Code:
<input type="button" value="Show Statistics" onclick="togglestats()" id="showS"/><input style="display: none;" type="button" value="Hide Statistics" onclick="togglestats()" id="hideS" /></span>
<!-- END switch_viewonline_link -->
less code = better
A toggling function is better than having two seperate function. Also, you don't need to start a jQuery function within a Javascript function as this function does not require the DOM to be loaded. (well it does, but it will only execute on click ... so it doesn't)
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How to show/hide who is online?
This is what it shows:
This is what it shows when I click the button:
All it does is change the text of the button.
The second code LGForum gave me doesn't do anything and it takes away the who is online? text.
I like the first code better but its not working 100%, but i will use either one if it show the who is online? text
This is what it shows when I click the button:
All it does is change the text of the button.
The second code LGForum gave me doesn't do anything and it takes away the who is online? text.
I like the first code better but its not working 100%, but i will use either one if it show the who is online? text
Last edited by iamthestreets on January 17th 2012, 10:29 pm; edited 1 time in total
Re: How to show/hide who is online?
iamthestreets wrote:This is what it shows:
The second code LGForum gave me doesn't do anything and it takes away the who is online?
Lol woops. Thats because there was a slight silly error in it. It should have been this:
- Code:
<script type="text/javascript">
function togglestats() {
var x=document.getElementById('showS');
if (x.style.display!='none') {
$('.hiddenstat').show('slow');
x.style.display = "none";
document.getElementById('hideS').style.display = "inline-block";
} else {
$('.hiddenstat').hide('slow');
x.style.display = "inline-block";
document.getElementById('hideS').style.display = "none";
}}
</script>
EDIT: this code above now works perfectly.
Last edited by LGforum on January 17th 2012, 10:32 pm; edited 1 time in total
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How to show/hide who is online?
Rideem3 wrote:Actually, the reason why it's displaying the birthday is because it's displayed as a PHP variable. For some reason I can't give it the class I gave the others.
That I don't mind showing, but when i click the button to show statistics it does nothing.
(if you could hide the birthday info that would be cool too)
Re: How to show/hide who is online?
LGforum wrote:iamthestreets wrote:This is what it shows:
The second code LGForum gave me doesn't do anything and it takes away the who is online?
Lol woops. Thats because there was a slight silly error in it. It should have been this:
- Code:
<script type="text/javascript">
function togglestats() {
var x=document.getElementById('showS');
if (x.style.display!='none') {
$('.hiddenstat').show('slow');
x.style.display = "none";
document.getElementById('hideS').style.display = "inline-block";
} else {
$('.hiddenstat').hide('slow');
x.style.display = "inline-block";
document.getElementById('hideS').style.display = "none";
}}
</script>
EDIT: this code above now works perfectly.
Thanks it worked, but is there any way to put the "Who is Online?" text back?
This it what it shows as now:
Can it show like this:
And is there any way possible to remove the birthday info?
Re: How to show/hide who is online?
You can remove the birthday info by adding this in the CSS:
To toggle it with the rest of the stuff add this to the script:
underneath where it says:
function togglestat() {
- Code:
.hiddenstat+tr{display:none;}
To toggle it with the rest of the stuff add this to the script:
- Code:
$( $('.hiddenstat')[1].nextSibling ).toggle();
underneath where it says:
function togglestat() {
Last edited by LGforum on January 17th 2012, 10:42 pm; edited 1 time in total
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How to show/hide who is online?
iamthestreets wrote:LGforum wrote:iamthestreets wrote:This is what it shows:
The second code LGForum gave me doesn't do anything and it takes away the who is online?
Lol woops. Thats because there was a slight silly error in it. It should have been this:
- Code:
<script type="text/javascript">
function togglestats() {
var x=document.getElementById('showS');
if (x.style.display!='none') {
$('.hiddenstat').show('slow');
x.style.display = "none";
document.getElementById('hideS').style.display = "inline-block";
} else {
$('.hiddenstat').hide('slow');
x.style.display = "inline-block";
document.getElementById('hideS').style.display = "none";
}}
</script>
EDIT: this code above now works perfectly.
Thanks it worked, but is there any way to put the "Who is Online?" text back?
This it what it shows as now:
Can it show like this:
And is there any way possible to remove the birthday info?
I figured this out.
Re: How to show/hide who is online?
LGforum wrote:You can remove the birthday info by adding this in the CSS:
- Code:
.hiddenstat+tr{display:none;}
Perfect! Thanks! You guys are awesome and thanks for the quick responses.
Re: How to show/hide who is online?
Topic Solved & Locked |
Nera.- Energetic
- Posts : 7078
Reputation : 2017
Language : English
Location : -
Similar topics
» Categories hide/show
» Show/hide script not working
» Transition on show/hide JQ
» hide and show password
» Sidebar hide/show
» Show/hide script not working
» Transition on show/hide JQ
» hide and show password
» Sidebar hide/show
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum