February 2012
3 posts
1 tag
中華電信 MOD 節目表手機好讀版
因為是在強大的怨念下做出這東西,所以之前的介紹文帶著很重的怨氣,後來決定重寫。
先給網址: http://beata.github.com/HinetModMobile/
由於 Hinet 的 MOD 節目表的跨網域存取沒開的關係,中間是透過 Yahoo YQL 當 proxy 來載入資料,速度上難免有影響,請多包涵。
頁面左邊的頻道名稱點下去會跳出頻道節目表;頁面右邊的目前節目點下去直接連到 Google 搜尋相關結果。
Things It Might Be Fun/Useful to Try the Universal... →
css-tricks.com
Paul Irish recently wrote a post on using the universal selector to set border-box box-sizing on everything: I’ve been wanting to try that for a while and I’m happy to say I’ve used it on a few projects already and it’s awesome. It also …
3 tags
jQuery datetimepicker range select example
使用 jQuery datetimepicker 官網的範圍選擇範例遇到時間會自動消失的問題。
就是如果另外一個日期時間欄位(B)有預設值,在 B 的 datetimepicker 尚未顯示前就已經在 A 選好的值的話,會造成 B 的時間消失,且 A 跟 B 的 minDate/maxDate 效果會出不來。
以下是防止這個問題出現的範例,另外根據個人喜好加上限制時間的 minDateTime/maxDateTime 選項:
var dates = $('#from, #to').
each(function(){
if ( this.value ) {
var option = this.id === 'from' ? 'minDate' : 'maxDate';
$('#from, #to').not(this).
...