mirror of
https://github.com/torproject/webwml.git
synced 2025-01-10 20:01:37 +00:00
7 lines
110 B
JavaScript
7 lines
110 B
JavaScript
// JavaScript Document
|
|
|
|
function clearDefault(el) {
|
|
if (el.defaultValue == el.value) {
|
|
el.value = "";
|
|
}
|
|
} |