Skip to content

Instantly share code, notes, and snippets.

@ankitnetwork18
Created January 11, 2013 07:17
Show Gist options
  • Save ankitnetwork18/4508659 to your computer and use it in GitHub Desktop.
Save ankitnetwork18/4508659 to your computer and use it in GitHub Desktop.
cookies: showing something based on javascript cookie
//check for cookie and show default city
if( typeof getCookie('city_name') == 'undefined') {
$('div#delhi').show();
} else {
var cookie_city = getCookie('city_name');
$('div#'+cookie_city).show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment