Hello,

I am trying to create a series of links that will show an element and then open up up the a different element for each. I have it so that I can create on, but I was wondering if somone could help me figure out how I can get it to do 2 times.

This is my jquery

$(document).ready(function(){
	 //Frontline    
	 
	    $('#Frontline').click(function(){
	    $("#widget-FL").show();
		$.cookie('display', 'shown');
	    });
		 $('.close').click(function(){
	    $("#widget-FL").hide();
		$.cookie('display', 'hidden');
	    });
		    var display = $.cookie('display');

    // Set the user's selection for the left column
    if (display == 'shown') {
        $("#widget-FL").show();
    };
    // Set the user's selection for the right column
    if (display == 'hidden') {
       $("#widget-FL").hide();
    };
	
	
	
	});

this is my link

<div class="add">
          Add widget:  <a id="Frontline" href="">Frontline</a> |<a id="Facebook" href="">Facebook</a> |   
        </div>

this is the list item that will appear and disappear.
<li class="widget color-white" id="widget-FL" style="display:none;">this is Frontline <a href="" class="close">close</a></li>
<li class="widget color-white" id="widget-FB" style="display:none;">this is Facebook <a href="" class="close">close</a></li>


Thank you in advance,

Aaron

Could you please clarify the question, i can't make out what you're trying to do

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.