紅茶小館

一杯紅茶喜相逢 Share Web Tech and Life …
Jul 13

用這個 function 就可防止圖片大於screen, 難於觀看。


 $("img").each(function(){
     if($(this).width() > $(this).parent().width()) {
         $(this).width("100%");
     }
 }); 
Jul 2

另一個手工打造的 Jquery 例子.較輕巧方便。

http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/

Jul 2
Jquery edit in place
icon1 vincent | icon2 JavaScript | icon4 07 2nd, 2008| icon31 Comment »

Project 需要做一個 in place edit 的表格,

JQuery 已有plug-in, 相當好用. 不用自己寫 . good~

http://blog.yoren.info/tag/edit-in-place/

Jun 23
Jquery Image Swap
icon1 vincent | icon2 JavaScript | icon4 06 23rd, 2008| icon338 Comments »

幾行就OK~

$(document).ready(function(){
    x = document.getElementById('imgID');
    $('.swapImageClass').bind('click', 'any_data', function(e){
        x.src = $(this).attr("src");
    });
});