/    Sign up×
Community /Pin to ProfileBookmark

javascript keydown event

Hi,
i am using one text filed then entring the value into text filed and pressing F5.
here i am restricting the key and making it return false nad i am not loosing text field value.

here is my code

<html>
<body>
<input type=”text” name=”upfile” id=”upfile” onkeyDown=”ristrictcondition();”>
</body>
</html>
<script>
function ristrictcondition()
{
val = event.keyCode;
if(val == “116”)
{
alert(“Should not Refresh”);
document.form.file.focus();
document.form.file.select();
return false;
}
}
</script>

if the same thing i am doing for input type=”file”

here i am loosing my value when i press F5.

what i want is here also i need to main value even i press F5.

here is my code

<html>
<body>
<input type=”file” name=”upfile” id=”upfile” onkeyDown=”ristrictcondition();”>
</body>
</html>
<script>
function ristrictcondition()
{
val = event.keyCode;
if(val == “116”)
{
alert(“Should not Refresh”);
document.form.file.focus();
document.form.file.select();
return false;
}
}
</script>

cna any one tell me what is the problem it’s very urgent for me.

Thanks & Regards
By
Gopi.

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@gil_davisSep 19.2007 — onkeyDown="ristrictcondition();[/QUOTE]Events are lower case, and you shuld use the keyword "return". It should be onkeydown="return ristrictcondition();
×

Success!

Help @gpbodapati 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 6.18,
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: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

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