/    Sign up×
Community /Pin to ProfileBookmark

Automatically shade a text input

Is it possible to automatically shade a text input so that the user can overtype the value with a single keystroke. I know I could write some stuff to do this, but loading the form with the value shaded might be a bit more elegant.

Thanks

FG

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@requestcodeDec 22.2003 — In the body tag you could use focus() and the select() on the form element to do that like this:

<body onLoad="document.form_name.element_name.focus();document.form_name.element_name.select()">

You could also place it in a function like this:

<script language="javascript">

function doIt()

{

document.form_name.element_name.focus()

document.form_name.element_name.select()

}

</script>

<body onLoad="doIt()">
Copy linkTweet thisAlerts:
@FG1authorDec 22.2003 — That'll do nicely.

Thanks

FG
×

Success!

Help @FG1 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.4,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...