Jump to content

[SOLVED] JAVAscript Problem :(


hungryOrb

Recommended Posts

Hello!

 

I DO realise this is a PHP forum, but this is just posted here in the vain hope that one or two may know enough to right the code below!

 

I would like to create a date button which when clicked inserts todays date in a specified format into the text box with id="datebox" to it's left.

 

Code:

 

			<b>Date(yyyy-mm-dd):</b></td><td class=two>
			<input type="text" name="dateofsubmit" size="8" id="datebox">


			<script type="text/javascript">
			<!--
			var currentTime = new Date()
			var month = currentTime.getMonth() + 1
			var day = currentTime.getDate()
			var year = currentTime.getFullYear()
			document.write(year + "-" + month + "-" + day)
			//-->
			</script>

<button onclick="document.getElementById('datebox').value=
document.write(year + "-" + month + "-" + day)">Today</button>

 

 

It doesn't work of course! However, one thing to note, is that because all this lies inside a <form></form> the button automatically adopts the characteristics of the other button on the page which is a submit button. Anyone know a way to make this button only have the insert date ability?

 

Thankyou in advance!

Robin

Link to comment
Share on other sites

this is a php forum yeah but youre in the javascript section so you came to the right place. Something i always use when working with forms i just place a hyperlink inside the form so it wont submit. to make it look like a button just place an image inside. This is the easiest way.

You can also write a script that stops the form from submitting when a button is clicked but I recommend using a hyperlink

<form>
<a href="javascript:jsFunction()">place time</a>
</form>

Link to comment
Share on other sites

Thanks, fixed it though ;]

here is result for whoever can use it also:

 

<script type="text/javascript">
			<!--
			var currentTime = new Date()
			var month = currentTime.getMonth() + 1
			var day = currentTime.getDate()
			var year = currentTime.getFullYear()
							//-->
			</script>

<input type=button onclick="document.getElementById('datebox').value=year + '-' + month + '-' + day" value="Today">

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.