168
rated 0 times
[
173]
[
5]
/ answers: 1 / hits: 23183
/ 15 Years ago, fri, july 3, 2009, 12:00:00
how do I prevent the user to change the value in an input field (which contains a certain value to be copied into the clipboard) without using disabled=true? The text should be selected once the user clicks in the field (that's working already) but entering anything should have no effect.
Thanks
jQuery('input.autoselect[value]').focus(function() { jQuery(this).select(); });
More From » jquery