Skip to content

Instantly share code, notes, and snippets.

View jeremyrajan's full-sized avatar
💭
💯

Jeremy Rajan jeremyrajan

💭
💯
View GitHub Profile
@jeremyrajan
jeremyrajan / datepicker
Created July 28, 2013 15:51
A very very simple date picker for those who have lot of conflicting libraries! :)
<html>
<head>
<script>
<!--script which will change the date in the input box according to selection-->
<!-- This date selector doesnot carry fancy stuff :). A very basic date selector. -->
function changedate()
{
var date = document.getElementById("date"),
sel_date = date.options[date.selectedIndex];