jQuery getJSON POST

Ever wanted a getJSON which does a post?

Here it is:

jQuery.extend({
    postJSON: function(url, data, callback)
    {
        $.post(url, data, callback, "json");
    }
});


출처 - http://kristofmattei.be/2009/10/27/jquery-getjson-post/




'Development > jQuery' 카테고리의 다른 글

jQuery UI CSS Framework 2  (0) 2012.06.09
jQuery UI CSS Framework 1  (0) 2012.06.09
jQuery 추천 플러그인  (0) 2012.06.07
jQuery - 선택자  (0) 2012.06.03
jQuery - 마우스 오른쪽 버튼  (0) 2012.06.03
Posted by linuxism
,