Development2006/12/11 00:10
자바스크립트의 라이브러리 중 하나인 Prototype에서 제공해주는 기능 중 하나입니다.
Ajax를 이용해 얻어진 결과를 해당 객체.innerHTML의 값으로 사용한다랄까요;;
긴 설명은 패스~ ㅡ_ㅡa

  var url = 'request.asp'; //데이터를 담당할 페이지
  var pars = 'code='+변수;
  var target = 'PlaceHolder'; // <- 해당 객체
  var myAjax = new Ajax.Updater(target, url, {method: 'post', parameters: pars});


크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by Blue*
Development2006/03/15 14:51

moo.fx v1.2 is out! The biggest improvement? Documentation!

moo.fx changelog:

  • I've moved the animation logic, now you can use custom transitions (found in the bottom of both moo.fx and moo.fx.pack).
  • Opacity effect has been modified, works better in safari and now you can call the setOpacity method to sudden set the opacity (crossbrowser) without displaying the effect.

moo.fx.pack changelog:

  • No more fx.FadeSize. use the new fx.Combo, supports any combination between height, width and opacity.
  • No more fx.Multi. Use the new fx.Accordion, to generate accordions in 1 line of code!!
  • No more parseClassNames (it was lame)

Want to use transitions and opacity improvements but don't want to change your existing code? Just download moo.fx.js and use the old moo.fx.pack.js.

update: moo.fx.js is now 1.2.3. Fixed some Internet explorer memory leaks. Upgrade if you can!.





출처 : http://moofx.mad4milk.net/

크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by Blue*
Development2006/03/15 14:49

prototype 이 상당한 인기를 구가하고 있는 듯 하다.

특히 ajax 와 같이 js 가 많이 요구되는 경우에는

프레임워크 형태로 js 를 쓰지 않으면

디버깅 등의 문제로 골머리를 앓을테니



오늘 여러 사이트에서 관련 가이드가 여기 저기 소개되었다.



Developer Notes for prototype.js : http://www.sergiopereira.com/articles/prototype.js.html

Quick Guide to Prototype

Overview of the Prototype Library

Easy Ajax with Prototype



Download Prototype 1.4





더불어.. 이 녀석도

Download Script.aculo.us 1.5





출처 : http://blog.empas.com/ahnyounghoe/read.html?a=11580379

크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by Blue*