Results 1 to 10 of 13
-
28th Sep 2009, 08:33 AM #1OPMember
How To make page with hidden info
i want to make a simple html page or post
like i type in post
11
22
33
44
at the end link
when visitor click on link then
11
22
33
44
this hide and show other
content
55
66
77
88
on that single postRapidshareResellers Reviewed by RapidshareResellers on . How To make page with hidden info i want to make a simple html page or post like i type in post 11 22 33 44 at the end link Rating: 5
-
28th Sep 2009, 09:03 AM #2Member
Please explain more as it is confusing...
-
28th Sep 2009, 09:05 AM #3Member
You mean Hide Hack? I think that is a mod for vB/IPB..
-
28th Sep 2009, 09:10 AM #4MemberWebsite's:
warezxtc.comHTML:
Code:<span style="display: block" id="show1">1 2 3</span> <span style="display: none" id="show2">4 5 6</span> <br /><br /> <a href="#" onclick="showhide(); return false;">Show / Hide</a>
Code:function showhide() { // Coded by CyberJ37 var show1 = document.getElementById("show1"); var show2 = document.getElementById("show2"); if(show2.style.display == "none") { show1.style.display = "none"; show2.style.display = "block"; } else { show2.style.display = "none"; show1.style.display = "block"; } }
-
28th Sep 2009, 10:00 AM #5Member
Nice peace of code Cyberj37 but i think there is a little typo which is
show1.style.display = "none";
show1.style.display = "block";
Corrected Version:
function showhide() {
// Coded by CyberJ37
var show1 = document.getElementById("show1");
var show2 = document.getElementById("show2");
if(show2.style.display == "none") {
show2.style.display = "block";
show1.style.display = "none";
}
else {
show1.style.display = "block";
show2.style.display = "none";
}
}Friendly People (B-)):AK47Lamers (<_<): None Yet
IF You Have Never Got It Wrong, Then You Have Never Tried Anything New. :| HolyShit
-
28th Sep 2009, 10:02 AM #6MemberWebsite's:
warezxtc.com
-
28th Sep 2009, 11:38 AM #7OPMember
Thanks Guys I will test this Big Big Thanks i save my 10$
-
28th Sep 2009, 11:45 AM #8OPMember
Thanks Cyberj37 but if
11
22
33
44
at the end link
when visitor click on link then
11
22
33
44
this hide and show other
content
55
66
77
88
on another link
hide this and show
another
99
00
11
22
then
-
28th Sep 2009, 11:53 AM #9OPMember
now this script works very well but i want to make more
page1
page2
page3
page4
-
28th Sep 2009, 12:04 PM #10OPMember
if i want to make 5 pages like that then what i do
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
How to see hidden Text from an HTML page????
By t3hdrom in forum Tutorials and GuidesReplies: 4Last Post: 23rd Sep 2012, 11:59 AM -
How to make redirect page in wp?
By flippy07 in forum WordpressReplies: 4Last Post: 18th Jul 2012, 08:52 PM -
How to make a hidden category on WP
By FarSeeR in forum WordpressReplies: 1Last Post: 1st Mar 2012, 12:35 AM -
How to Reveal Hidden Content by Ajax Thanks without refreshing page
By vorazeal in forum IP.BoardReplies: 4Last Post: 12th Jan 2011, 06:06 AM -
Link for hidden page...
By Porsche_maniak in forum Webmaster DiscussionReplies: 17Last Post: 27th Feb 2010, 11:17 AM
themaPoster - post to forums and...
Version 5.22 released. Open older version (or...