blob: c06439e668b34a716be0bb36f4b2b9bddaa86845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<body>
<input id="input" type="text">
<input id="readonly" type="text" readonly>
<script>
function focusTextField(id)
{
document.getElementById(id).focus();
}
function blurTextField(id)
{
document.getElementById(id).blur();
}
</script>
</body>
</html>
|