Results 1 to 2 of 2

Thread: Toggle visibility after a link is followed

  1. #1
    Join Date
    Oct 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Toggle visibility after a link is followed

    Hi there! I would REALLY appreciate any help!

    I've got a script that toggles the visibility of a div on "dashboard.html":

    Code:
    $(document).ready(function(){
    
            $("#add_networks_wrapper, .remove_box").hide();
    	$(".toggle_add_networks").show();
    	
    	$('.toggle_add_networks').click(function(){
    	$("#add_networks_wrapper, .remove_box").slideToggle();
    	});
    
    });
    On "dashboard.html" it works great. The div "add_networks_wrapper" is hidden until I click the link that toggles it.

    What I need is a link from a different html page (say "account.html" or whatever) to open "dashboard.html" with the hidden div's visible.

    Any help would be very appreciated!

  2. #2
    Join Date
    Oct 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    An idea:

    What if I had a link like "dashboard.html/user?trigger=true

    Can I use jQuery to look for the "trigger" element, and if the trigger is true in the address bar activate the script?

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •