Click here to Skip to main content
15,887,746 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: dropdown check for same values Pin
Sunasara Imdadhusen21-May-14 23:53
professionalSunasara Imdadhusen21-May-14 23:53 
Questionjavascript Date Issue Pin
wasim khan1-Oct-13 2:20
wasim khan1-Oct-13 2:20 
AnswerRe: javascript Date Issue Pin
Kornfeld Eliyahu Peter6-Oct-13 10:43
professionalKornfeld Eliyahu Peter6-Oct-13 10:43 
GeneralRe: javascript Date Issue Pin
Sunasara Imdadhusen21-May-14 23:54
professionalSunasara Imdadhusen21-May-14 23:54 
QuestionJquery datepicker display for multiple forms Pin
Member 1025344226-Sep-13 22:07
Member 1025344226-Sep-13 22:07 
AnswerRe: Jquery datepicker display for multiple forms Pin
AsWorks1-Oct-13 0:40
AsWorks1-Oct-13 0:40 
Questionhow to get first and last date from selected month from dropdown selected value using javascript Pin
Srinivas Uttareshwar19-Sep-13 2:39
Srinivas Uttareshwar19-Sep-13 2:39 
AnswerRe: how to get first and last date from selected month from dropdown selected value using javascript Pin
jkirkerx20-Sep-13 12:47
professionaljkirkerx20-Sep-13 12:47 
The first day is always going to be 1
Every month almost has 31 days
You count your knuckles, forward and backwards
Jan = 31
Fed = 28
March = 31
April = 30
May = 31
June = 30
July = 31
Aug = 31
Sept = 30
oct = 31
Nov = 30
Dec = 31

You could of just Googled it on the interwebs

 32 down vote accepted
	

Very simple, no library required:

var date = new Date();
var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0);

or you might prefer:

var date = new Date(), y = date.getFullYear(), m = date.getMonth();
var firstDay = new Date(y, m, 1);
var lastDay = new Date(y, m + 1, 0);

https://www.google.com/search?q=javascript%2C+get+month+strt+and+fish&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a#q=javascript,+get+month+start+and+finish+dates&rls=org.mozilla:en-US:official&spell=1[^]
QuestionConnecting/saving to ms sql 2005 database and querying the ms sql database Pin
Otekpo Emmanuel16-Sep-13 14:07
Otekpo Emmanuel16-Sep-13 14:07 
AnswerRe: Connecting/saving to ms sql 2005 database and querying the ms sql database Pin
Richard MacCutchan16-Sep-13 21:04
mveRichard MacCutchan16-Sep-13 21:04 
GeneralRe: Connecting/saving to ms sql 2005 database and querying the ms sql database Pin
Otekpo Emmanuel17-Sep-13 0:29
Otekpo Emmanuel17-Sep-13 0:29 
GeneralRe: Connecting/saving to ms sql 2005 database and querying the ms sql database Pin
Richard Deeming17-Sep-13 1:38
mveRichard Deeming17-Sep-13 1:38 
GeneralRe: Connecting/saving to ms sql 2005 database and querying the ms sql database Pin
Richard MacCutchan17-Sep-13 1:57
mveRichard MacCutchan17-Sep-13 1:57 
GeneralRe: Connecting/saving to ms sql 2005 database and querying the ms sql database Pin
Richard Deeming17-Sep-13 4:28
mveRichard Deeming17-Sep-13 4:28 
GeneralRe: Connecting/saving to ms sql 2005 database and querying the ms sql database Pin
Richard MacCutchan17-Sep-13 4:35
mveRichard MacCutchan17-Sep-13 4:35 
GeneralRe: Connecting/saving to ms sql 2005 database and querying the ms sql database Pin
Richard Deeming17-Sep-13 5:14
mveRichard Deeming17-Sep-13 5:14 
Questioninclude javascript within document write Pin
wfzen16-Sep-13 10:33
wfzen16-Sep-13 10:33 
AnswerRe: include javascript within document write Pin
twseitex25-Sep-13 5:01
twseitex25-Sep-13 5:01 
QuestionHow to call event using javascript? Pin
Sandesh M Patil16-Sep-13 2:49
Sandesh M Patil16-Sep-13 2:49 
AnswerRe: How to call event using javascript? Pin
Richard Deeming16-Sep-13 3:51
mveRichard Deeming16-Sep-13 3:51 
GeneralRe: How to call event using javascript? Pin
Sandesh M Patil16-Sep-13 3:58
Sandesh M Patil16-Sep-13 3:58 
AnswerRe: How to call event using javascript? Pin
Akii Malam1-Oct-13 1:06
Akii Malam1-Oct-13 1:06 
Questionuse jquery to Made page controls Pin
fsj_fairy12-Sep-13 16:59
fsj_fairy12-Sep-13 16:59 
QuestionRe: use jquery to Made page controls Pin
ZurdoDev20-Sep-13 7:40
professionalZurdoDev20-Sep-13 7:40 
GeneralRe: use jquery to Made page controls Pin
Vasudevan Deepak Kumar29-Nov-13 1:28
Vasudevan Deepak Kumar29-Nov-13 1:28 

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.