このプラグインが機能しないのはなぜですか? Firebug は間違いに気づきません。
(function ($) {
$.fn.clearForm = function () {
return this.each(function () {
$(this).on("focus", function () {
$(this).val() = '';
});
});
};
}(jQuery));
そしてhtmlで
<script>
$(this).clearForm();
ありがとう!