나중에 정리해서 다시 만들거..
1. UI와 관계 없는 플러그인 (Utility)
$.plugin(...)
ex) $.extend(), $.get()
2. UI와 관계 있는 플러그인
$(Seletor).plugin(...)
ex) $("...").innerfade()
<< jQuery Official Plugin >>
= jQuery UI
= jQuery Mobile
= Grid : jQGrid, spreadsheet, w2ui, AxisJ
= layout
jQuery UI
$("...").dialog( method );
ex. $("...").dialog("open");
$("...").dialog( method, option );
$("...").dialog( option ); -> option이 값일 경우 option, function일 경우 Event
{
height:"",
close:function(){
}
}
}