default value
Opened this issue · 1 comments
blonkm commented
I am looking for a way to set a default value in the field. So when the field is empty, and the user clicks on it, the text field appears with the default value set. Do you have ideas how to do this?
blonkm commented
ok it wasn't that hard
if (value=='') {
value = options.defaultValue($(this));
}