Click here to Skip to main content
15,884,472 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: upload a website Pin
molesworth3-Jul-09 13:08
molesworth3-Jul-09 13:08 
GeneralRe: upload a website Pin
sheemap4-Jul-09 3:28
sheemap4-Jul-09 3:28 
QuestionJavaScript mounth Calendar Pin
shareef2220002-Jul-09 22:14
shareef2220002-Jul-09 22:14 
AnswerRe: JavaScript mounth Calendar Pin
Marc Firth2-Jul-09 22:27
Marc Firth2-Jul-09 22:27 
GeneralRe: JavaScript mounth Calendar Pin
shareef2220002-Jul-09 22:39
shareef2220002-Jul-09 22:39 
GeneralRe: JavaScript mounth Calendar Pin
Marc Firth2-Jul-09 22:44
Marc Firth2-Jul-09 22:44 
GeneralRe: JavaScript mounth Calendar Pin
shareef2220002-Jul-09 22:48
shareef2220002-Jul-09 22:48 
GeneralRe: JavaScript mounth Calendar Pin
Marc Firth3-Jul-09 0:11
Marc Firth3-Jul-09 0:11 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.month {
width:50px;
background:#000066;
color:#FFFFFF;
display:inline-block;
float:left;
border:1px solid #ffffff;
text-align:center;
cursor:pointer;
}
.month:hover{
background-color:#FF6600;
}
</style>
<script type="text/javascript">
function setmonth(x){
document.getElementById('chosenmonth').value = x;
}
function setyear(x){
document.getElementById('chosenyear').value = x;
}
function yearplus(){
document.getElementById('year').value++;
document.getElementById('chosenyear').value = document.getElementById('year').value;
}
function yearminus(){
document.getElementById('year').value--;
document.getElementById('chosenyear').value = document.getElementById('year').value;
}
</script>
</head>

<body>

<div style="text-align:center; width:624px; margin:auto;">
<form id="form1" name="form1" method="post" action="">
<div class="month" name="yearminus" id="yearminus" tabindex="1" onclick="yearminus()"> &lt; </div>
<input id="year" name="year" value="2009" style="float:left" />
<div class="month" name="yearplus" id="yearplus" tabindex="2" onclick="yearplus()"> &gt; </div><br /><br />

<div class="month" onclick="setmonth('Jan')"> Jan </div>
<div class="month" onclick="setmonth('Feb')"> Feb </div>
<div class="month" onclick="setmonth('Mar')"> Mar </div>
<div class="month" onclick="setmonth('Apr')"> Apr </div>
<div class="month" onclick="setmonth('May')"> May </div>
<div class="month" onclick="setmonth('Jun')"> Jun </div>
<div class="month" onclick="setmonth('Jul')"> Jul </div>
<div class="month" onclick="setmonth('Aug')"> Aug </div>
<div class="month" onclick="setmonth('Sep')"> Sep </div>
<div class="month" onclick="setmonth('Oct')"> Oct </div>
<div class="month" onclick="setmonth('Nov')"> Nov </div>
<div class="month" onclick="setmonth('Dec')"> Dec </div>
<input type="text" id="chosenmonth" value="Jan" />
<input type="text" id="chosenyear" value="2009" />
</form>
</div>

</body>
</html>


GeneralRe: JavaScript mounth Calendar Pin
Marc Firth3-Jul-09 0:16
Marc Firth3-Jul-09 0:16 
Question[Message Deleted] Pin
Member 40066482-Jul-09 20:45
Member 40066482-Jul-09 20:45 
Questionweb developpement with java and netbeans calling python code?? Pin
SEKA AAA2-Jul-09 1:00
SEKA AAA2-Jul-09 1:00 
QuestionObject not getting properly set in Javascript Pin
juiceboxhiro1-Jul-09 18:28
juiceboxhiro1-Jul-09 18:28 
Questionhow to sending dialog worn to user using javascrip?? Pin
re7et_3esh1-Jul-09 11:34
re7et_3esh1-Jul-09 11:34 
AnswerRe: how to sending dialog worn to user using javascrip?? Pin
Not Active1-Jul-09 18:05
mentorNot Active1-Jul-09 18:05 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
re7et_3esh1-Jul-09 23:53
re7et_3esh1-Jul-09 23:53 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
Not Active2-Jul-09 1:56
mentorNot Active2-Jul-09 1:56 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
re7et_3esh2-Jul-09 8:51
re7et_3esh2-Jul-09 8:51 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
Not Active2-Jul-09 10:16
mentorNot Active2-Jul-09 10:16 
AnswerRe: how to sending dialog worn to user using javascrip?? Pin
Marc Firth1-Jul-09 21:57
Marc Firth1-Jul-09 21:57 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
re7et_3esh1-Jul-09 23:52
re7et_3esh1-Jul-09 23:52 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
Marc Firth2-Jul-09 0:36
Marc Firth2-Jul-09 0:36 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
DoctorMick2-Jul-09 2:11
DoctorMick2-Jul-09 2:11 
GeneralRe: how to sending dialog worn to user using javascrip?? Pin
re7et_3esh2-Jul-09 8:50
re7et_3esh2-Jul-09 8:50 
QuestionFind Control returns null for edit item template control Pin
kKamel1-Jul-09 0:01
kKamel1-Jul-09 0:01 
AnswerRe: Find Control returns null for edit item template control Pin
K03061-Jul-09 2:04
K03061-Jul-09 2:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.