$('hoge').attr("disabled", "disabled");
$('hoge').removeAttr("disabled");
var one = new Date();
var another = new Date(one.getTime());
$('hoge')
.change(function (event) {
alert(event.target).val());
});
; (function ($) {
$.fn.example = function (hoge) {
return this.each(function () { alert('hoge'); });
});
})(jQuery);