テキストを選択不可にしたい場合
jquery.js
$(":text").attr("disabled","disabled");
再度選択可能にしたい場合
jquery.js
$(":text").removeAttr("disabled");
Go to list of users who liked
More than 5 years have passed since last update.
テキストを選択不可にしたい場合
$(":text").attr("disabled","disabled");
再度選択可能にしたい場合
$(":text").removeAttr("disabled");
Register as a new user and use Qiita more conveniently
Go to list of users who liked