목록JQuery (5)
정미나닷컴
[jQuery] Juitter Plugin 을 이용한 트위터 실시간 검색
요즘 네이버나 다음같은 포탈에서 새롭게 선보이고 있는 실시간 검색 jQuery로 만들 수 있다고 해서 대충 만들어봤는데 검색이 되는 것도 있고 안되는 것도 있고.. 흠.. 보완이 필요하다!! ☞ http://jmina.hosting.paran.com/jquery/liveSearch.html
IT
2010. 10. 7. 15:26
[jQuery] jQuery와 XPath를 연동한 xml 파싱
* xml 파일 - - - - * 소스 파일
IT
2010. 8. 30. 14:15
[jQuery] jQuery Form Plugin을 이용한 File Upload
- jQuery Form Plugin을 이용하면 page reload 없이 file을 upload 할 수 있다. * 소스 파일 파일을 선택하세요. * 파일 업로드 파일
IT
2010. 7. 14. 10:45
[jQuery] jQuery를 이용한 xml 파싱
* xml 파일 - - 번호 제목 타입 * 소스 파일 $.ajax({ type: "get" ,dataType: "xml" ,url: "xml파일 주소" ,success: function(xml){ if($(xml).find("item").length > 0){ // null check $(xml).find("item").each(function(){ // item 수만큼 loop // item 요소 중 title 읽어오기. var title = $(this).find("title").text(); }); } } ,error: function(){ alert("xml error!!"); } });
IT
2010. 7. 2. 14:41