/    Sign up×
Community /Pin to ProfileBookmark

show date onload event

Dear readers

I am not very expert in Javascript , i just want to show the date in textbox where the user can not change the date , and it will show automatically when you load the form, anyone can help me , i got cod for my time as followes:

<?xml version=”1.0″ encoding=”UTF-8″?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd“>

<html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en” lang=”en”>

<head>
<title>prac2 </title>
<script type=”text/javascript”>
<script type=”text/javascript”>

var currentTime = new Date();

document.write(“<p>” + currentTime.getDate() + “/”
+ (currentTime.getMonth()+1) + “/”
+ currentTime.getFullYear() + “</p>”);

</script>

</head>
<body>
<form id=”prac2″ method=”post” action=”http://tl28serv.uws.edu.au/twainfo/form.asp “>
<p>Today’ Date <input type=”text” name=”time” vlaue=”currentTime” size=”20″ maxlength =”16″ readonly=”readonly” />
</form>
</body>
</html>

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@FangApr 02.2010 — &lt;script type="text/javascript"&gt;
var currentTime = new Date();
window.onload=function() {
document.getElementsByName('time')[0].value = currentTime.getDate() + "/" + (currentTime.getMonth()+1) + "/" + currentTime.getFullYear();
};
&lt;/script&gt;
×

Success!

Help @twa 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.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: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

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

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