セッションに保存されている値を取得できます。次に、選択ボックスに選択した値としてCookieの値を表示します。
以下のコードで試してみましたが、残念ながらCookieの値が選択されていません。
私の問題を解決するのを手伝ってください。
<script>
$(document).ready(function(){
$('#continue').click(function() {
var singleValues = $("#select_letter").val();
$.cookie("language", singleValues);
})
alert($.cookie('language')); //getting the correct value which are set in cookie
$('#select_letter option[value="'+$.cookie('language')+'"]').attr('selected','selected');
//This is not working,Not setting the cookie value as selected
});
</script>
</head>
<body>
<select id='select_letter'>
<option>Java</option>
<option>C</option>
<option>php</option>
<option>python</option>
<option>c sharp</option>
</select>
<input type="button" id='continue' value="Save as default value"/>
<!-- On click of this link the current page will load -->
</body>
</html>