Skip to content

Instantly share code, notes, and snippets.

@h4
Created July 8, 2015 10:31
Show Gist options
  • Save h4/fcf1b65e80d37fd2d96e to your computer and use it in GitHub Desktop.
Save h4/fcf1b65e80d37fd2d96e to your computer and use it in GitHub Desktop.
$(function() {
var $citySelect = $('#city-select'),
STORAGE_ITEM_NAME = 'saveCity';
$citySelect.on('change', function () {
var url = $citySelect.val();
if (url !== '') {
localStorage.setItem(STORAGE_ITEM_NAME, url);
window.location = url;
}
return false;
});
if(localStorage.getItem(STORAGE_ITEM_NAME)){
$citySelect.val(localStorage.getItem(STORAGE_ITEM_NAME));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment