jqueryのdatepickerを使用しており、兄弟のselect要素の値に基づいてbeforeShowに配列を設定しようとしています。
これが私が試したものですが、機能していないか、エラーをスローしていません。
beforeShow: function(input, inst) {
$(input).siblings("select.startdates").find("option").each( function() {
startDates.push($(this).val())
});
console.log($(input).siblings("select.startdates"))
},
ログは[]
htmlは次のようになります。
<input class="hasDatepicker" id="myInput" />
<div>
<select class="startDates">
<option value="2013, 2, 1">01/03/2013</option>
....
</select>
</div>