jQuery 1.4 Released
script 2010. 1. 16. 22:25javascript framework의 최고봉이라 할 수 있는 jQuery가 업데이트하여 1.4 버전을 발표했다.
자세한 내용은 jQuery 1.4 Released 페이지를 참조하고
대충 살펴보니 속도 개선을 한점과
setter함수(css(), val(), html() 등)에 function을 사용할 수 있는것
jQuery 1.4 Released페이지와 API사이트를 참조하여 살펴봐야 할 듯
jQuery team이 무섭다 ㄷㄷ
점점 간단하게 개발할 수 있는데 속도까지 빨라지도 있다니 ㄷㄷ
자세한 내용은 jQuery 1.4 Released 페이지를 참조하고
대충 살펴보니 속도 개선을 한점과
setter함수(css(), val(), html() 등)에 function을 사용할 수 있는것
// find all ampersands in A's and wrap with a span
$('a').html(function(i,html){
return html.replace(/&/gi,'&');
});
// Add some information to the title of the anchors
$('a[target]').attr("title", function(i,title){
return title + " (Opens in External Window)";
});
core부분에서 element생성과 동시에 속성및 이벤트를 지정할 수 있는것jQuery("이 외에도 추가되는 함수들이 더 있는데", { id: "foo", css: { height: "50px", width: "50px", color: "blue", backgroundColor: "#ccc" }, click: function() { $(this).css("backgroundColor", "red"); } }).appendTo("body");
jQuery 1.4 Released페이지와 API사이트를 참조하여 살펴봐야 할 듯
jQuery team이 무섭다 ㄷㄷ
점점 간단하게 개발할 수 있는데 속도까지 빨라지도 있다니 ㄷㄷ
'script' 카테고리의 다른 글
[Link] Google Maps Plugin for jQuery (0) | 2010.09.20 |
---|---|
[Link] javascript CDN(Content Delivery Network) Catalog (0) | 2010.07.08 |
javascript document.referrer (0) | 2010.03.31 |
javascript 세자리마다 콤마(,) 찍기 (0) | 2010.02.18 |
javascript 상하 롤링 v1.0 (2) | 2010.01.31 |
jQuery - live() (0) | 2010.01.13 |
jQuery - data(), removeData() (0) | 2010.01.12 |
window.onload 여러곳에서 사용하기 (0) | 2009.12.04 |
[Link] jQuery Cheat Sheet (0) | 2009.11.05 |
마우스로 드래그해서 선택한 텍스트 가져오기 (1) | 2009.09.04 |