-
-
Save zlojkashtan/0f8fe90e137a4a360f2c089c2aaebd77 to your computer and use it in GitHub Desktop.
Revisions
-
h4 created this gist
Jul 8, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ $(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)); } });