Link to home
Start Free TrialLog in
Avatar of newbie27
newbie27Flag for United Kingdom of Great Britain and Northern Ireland

asked on

retreive cookie values

Hello John,

I am using the attached snippet to retrieve IDs and Titles from the cookie, first thing I am doing here is to load items from the cookie showShortList() which are stored as array [RefNo: Title] then I have to construct <li></li> like below, however, it is doing it quite right.
please can you advice me here.
regards
sam
      
if($.cookie('shortlist')){
   var myList = showShortList();
  for(var x=0; x<myList.length; x++){  			
				 
		
		
		 	$('#shortlist').append('<li id="' + myList[x].theId + '_li" style="display:none;"><a href="#" class="dynAdded" onclick="removeItem(this); return false;" title="Remove">[-]</a>' +myList[x].title+ '</li>');			
    
		 }
        }

Open in new window

Avatar of brad2575
brad2575
Flag of United States of America image

What is it not doing quite right?  Displaying the data?  Or retrieving the cookie data?  If the displaying is not working please post the code that is generated from the above code.
ASKER CERTIFIED SOLUTION
Avatar of hielo
hielo
Flag of Wallis and Futuna image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of newbie27

ASKER

thanks
You are welcome!