Click here to Skip to main content
15,886,963 members
Home / Discussions / JavaScript
   

JavaScript

 
Questionhow can save a file through javascript Pin
vimal Tyagi Zindagi3-Apr-13 21:18
vimal Tyagi Zindagi3-Apr-13 21:18 
AnswerRe: how can save a file through javascript Pin
Sandeep Mewara3-Apr-13 23:30
mveSandeep Mewara3-Apr-13 23:30 
QuestionUsing a javascript timer in a asp User Control Pin
Steve Holdorf1-Apr-13 11:09
Steve Holdorf1-Apr-13 11:09 
AnswerRe: Using a javascript timer in a asp User Control Pin
Steve Holdorf2-Apr-13 0:46
Steve Holdorf2-Apr-13 0:46 
AnswerRe: Using a javascript timer in a asp User Control Pin
Steve Holdorf2-Apr-13 1:46
Steve Holdorf2-Apr-13 1:46 
Questionvalidating candian postal codes Pin
jkirkerx31-Mar-13 12:12
professionaljkirkerx31-Mar-13 12:12 
AnswerRe: validating candian postal codes [solved] Pin
jkirkerx1-Apr-13 7:20
professionaljkirkerx1-Apr-13 7:20 
QuestionTime and date Pin
Tichaona J31-Mar-13 4:15
Tichaona J31-Mar-13 4:15 
Am not sure what I’ve done wrong. The below code is supposed to show the time and date as Time|Date: 16:08:24 31/3/2013, however its now showing up as Time|Date: 16:08:24 0/3/2013…

JavaScript
<script>
function startTime()
{
var today=new Date();
var d=today.getDay();  //---Day Sunday
var dt=today.getDate();  //---Date 1-31
var mt=today.getMonth() + 1;  //---Month
var y=today.getFullYear();//---Year
var h=today.getHours();  //---Hours
var m=today.getMinutes(); //---Mintutes
var s=today.getSeconds(); //---Seconds
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML= "Time|Date:"+" "+h+":"+m+":"+s+ " " + d+"/"+mt+"/"+y;
t=setTimeout(function(){startTime()},500);
}

function checkTime(i)
{
if (i<10)
  {
  i="0" + i;
  }
return i;
}
</script>


Note: Everything else is fine except for the date, what with it bring up '0' instead of '31'
AnswerRe: Time and date Pin
dusty_dex31-Mar-13 4:41
dusty_dex31-Mar-13 4:41 
QuestionJquery - Setting focus on Canvas Pin
Simon Lee Shugar29-Mar-13 2:54
Simon Lee Shugar29-Mar-13 2:54 
AnswerRe: Jquery - Setting focus on Canvas Pin
Jasmine250129-Mar-13 6:55
Jasmine250129-Mar-13 6:55 
GeneralRe: Jquery - Setting focus on Canvas Pin
Simon Lee Shugar3-Apr-13 12:51
Simon Lee Shugar3-Apr-13 12:51 
AnswerRe: Jquery - Setting focus on Canvas Pin
jkirkerx30-Mar-13 18:57
professionaljkirkerx30-Mar-13 18:57 
AnswerRe: Jquery - Setting focus on Canvas Pin
Dennis E White2-Apr-13 5:57
professionalDennis E White2-Apr-13 5:57 
GeneralRe: Jquery - Setting focus on Canvas Pin
jkirkerx2-Apr-13 6:28
professionaljkirkerx2-Apr-13 6:28 
GeneralRe: Jquery - Setting focus on Canvas Pin
Dennis E White2-Apr-13 6:35
professionalDennis E White2-Apr-13 6:35 
GeneralRe: Jquery - Setting focus on Canvas Pin
jkirkerx2-Apr-13 6:38
professionaljkirkerx2-Apr-13 6:38 
GeneralRe: Jquery - Setting focus on Canvas Pin
Dennis E White2-Apr-13 6:42
professionalDennis E White2-Apr-13 6:42 
GeneralRe: Jquery - Setting focus on Canvas Pin
Simon Lee Shugar3-Apr-13 12:50
Simon Lee Shugar3-Apr-13 12:50 
AnswerRe: Jquery - Setting focus on Canvas Pin
AspDotNetDev7-Apr-13 13:10
protectorAspDotNetDev7-Apr-13 13:10 
GeneralRe: Jquery - Setting focus on Canvas Pin
Simon Lee Shugar7-Apr-13 21:34
Simon Lee Shugar7-Apr-13 21:34 
QuestionAJAX Javascript ShowModalDialogBox in IE 7 and above not working Pin
unniyadan28-Mar-13 20:53
unniyadan28-Mar-13 20:53 
AnswerRe: AJAX Javascript ShowModalDialogBox in IE 7 and above not working Pin
Prasad Khandekar11-Apr-13 3:44
professionalPrasad Khandekar11-Apr-13 3:44 
QuestionAJ Pin
unniyadan28-Mar-13 20:52
unniyadan28-Mar-13 20:52 
QuestionJquery JqGrid Pin
Member 962382927-Mar-13 2:30
professionalMember 962382927-Mar-13 2:30 

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.