Activity Stream
48,167 MEMBERS
61042 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1.     
    #1
    Member

    Lightbulb 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 post
    RapidshareResellers 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

  2.   Sponsored Links

  3.     
    #2
    Member
    Please explain more as it is confusing...


  4.     
    #3
    Member
    You mean Hide Hack? I think that is a mod for vB/IPB..

  5.     
    #4
    Member
    Website's:
    warezxtc.com
    HTML:
    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>
    Javascript: (Put inside <head> tag)
    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";
        }
    }

  6.     
    #5
    Member
    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-)):AK47
    Lamers (<_<): None Yet

    IF You Have Never Got It Wrong, Then You Have Never Tried Anything New. :| HolyShit

  7.     
    #6
    Member
    Website's:
    warezxtc.com
    Quote Originally Posted by GrandMaster View Post
    Nice peace of code Cyberj37 but i think there is a little typo which is:
    Weird, I can swear I remember editing that!

    Anyways, edited!

  8.     
    #7
    Member
    Thanks Guys I will test this Big Big Thanks i save my 10$

  9.     
    #8
    Member
    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

  10.     
    #9
    Member
    now this script works very well but i want to make more

    page1

    page2

    page3

    page4

  11.     
    #10
    Member
    if i want to make 5 pages like that then what i do

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to see hidden Text from an HTML page????
    By t3hdrom in forum Tutorials and Guides
    Replies: 4
    Last Post: 23rd Sep 2012, 11:59 AM
  2. How to make redirect page in wp?
    By flippy07 in forum Wordpress
    Replies: 4
    Last Post: 18th Jul 2012, 08:52 PM
  3. How to make a hidden category on WP
    By FarSeeR in forum Wordpress
    Replies: 1
    Last Post: 1st Mar 2012, 12:35 AM
  4. Replies: 4
    Last Post: 12th Jan 2011, 06:06 AM
  5. Link for hidden page...
    By Porsche_maniak in forum Webmaster Discussion
    Replies: 17
    Last Post: 27th Feb 2010, 11:17 AM

Tags for this Thread

BE SOCIAL