jquery

jquery-uiのautocomplete

ここだけ変更してくれたら、複数のパラメータを渡して通信できるのに。 $ diff -u original.js jquery.ui.autocomplete.js --- original.js 2011-07-05 16:10:42.578595998 +0900 +++ jquery.ui.autocomplete.js 2011-07-05 16:11:47.568595994 +0900 @@ -27…

jquery.templateの使い方

jquery.pluginなので個別にいれる必要がある。 どんな表示になるかは何に貼ればよいのか分からなかったのでとりあえずjsdo.itに <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src="http://code.jquery.com/jquery-latest.min.js"></script> </meta></head></html>

jquery.pluginの書き方(memo)

これが一番良い書き方かは分からない。 参考にしたライブラリを元にjqueryのpluginの書き方をメモ。 雛形 // jquery.foo.js (function($) { $.fn.foo = function(opts) { var options = $.extend({}, $.fn.foo.defaults, opts), action1 = function{ }, acti…