Get local datetime format In Jquery - javascript

I want to get local machine datetime format in Jquery?
means if local date time format is in "MM-dd-yyyy" ,so this format I want to get in jquery.
OR
How can I convert my any datetime in local datetime format in jquery?

You can change date format in jquery datepicker as such:
var date = $('#datepicker').datepicker({ dateFormat: 'dd-mm-yy' }).val();
This Link , Link and Link may be helpful.

Related

Can I change the format of date which entered using Local date?

I want to change the format of the date which I entered using date picker
i want to change it dd-mm-yyyy
but now it's in mm/dd/yyyy
If you have date as string, use this to convert in date and then format it
String sDate1="03/08/1993";
Date date1=new SimpleDateFormat("dd/MM/yyyy").parse(sDate1);
Use this
String pattern = "dd-MM-yyyy";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);
String date = simpleDateFormat.format(date1);
System.out.println(date);
to format date in any format
Simply use the following lines of code:
$(".datepicker").datepicker({
dateFormat: "dd-mm-yy",
});
In fact, yy serves the purpose of yyyy here.

Jquery Datepicker Set Value From String

I am getting a string date from cookie which returns like this format 2017-11-16. My datepicker dateformat is D, M d, yy e.g Thu, Apr 27, 2017.
if I just set it as $("#m_checkin").datepicker().datepicker("setDate", "2017-11-16"); datepicker functions stop working and it just set 2017-11-16 as an input value. How can I format my date to my datepicker dateformat?
https://jsfiddle.net/n6dokkty/
You need to parse date before set date to particular format.
You can see here: https://jsfiddle.net/r1nm5h7k/
$( "#datepicker" ).datepicker({dateFormat: "DD, d MM, yy"});
$( "#datepicker" ).datepicker("setDate", $.datepicker.parseDate( "yy-mm-dd", "2017-11-16" ));
ref : https://api.jqueryui.com/datepicker/#utility-formatDate
You could look into momentjs, which is a javascript date/time library. With that, you can easily convert between dates of different format.
string newDate = moment(currentDate, currentFormatString).format(newFormatString)
You have to setDate with Date object instead of string (to avoid date format issues like you face currently).
So you have to change your code like below:
$("#m_checkin").datepicker().datepicker("setDate", new Date(2017,11,16));

Jquery datepicker change dateFormat to unix timestamp

I'm using the Jquery datepicker to add the selected dates to an SQL database in time format using dateFormat : '#'.
However, this uses js milliseconds and I need it in UNIX timestamp format which is in seconds. So basically I get an extra 3 zeros on the end.
I know I can /1000 to get the correct integer, but how do I do that in the js before it is entered into the db?
This is what I have so far:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.MyDate').datepicker({
dateFormat : '#'
});
});
</script>
try the below, it has temp value for your SQL DB.
var tempSQLvalue;
jQuery(document).ready(function() {
jQuery('.MyDate').datepicker({
dateFormat : '#',
onSelect: function(date) {
tempSQLvalue = date.slice(0,date.length-3);
console.log(tempSQLvalue);
}
});
})
Posting this answer for anyone else who has the same issue. Instead of using timestamps, I stuck to standard date formats. However, you need to check the different date formats between jquery and php. For example, the date 03-01-16 in jquery will be 'dd-mm-yy' while in php, the same date format would be 'd-m-Y'.

Json - Date not showing in correct format

When i fetch date from the db it is in following format :-
{5/13/2002 12:00:00 AM}
When i pass this as Json, i bind it to textbox & it shows me like this :-
/Date(1021228200000)/
How to display date in any correct format?
Extending this question I want to bind the date to html5 datepicker, How to do this?
var jsonDate = "/Date(1021228200000)/";
var date = new Date(parseInt(jsonDate.substr(6)));
The substr function takes out the "/Date(" part, and the parseInt function gets the integer and ignores the ")/" at the end. The resulting number is passed into the Date constructor.
jQuery dateFormat is a separate plugin. You need to load that explicitly.
Reference
You can use like below to display datetime and bind date to html5 datepicker.
<input class='selector' id='datepicker'/>
$( ".selector" ).datepicker({ dateFormat: 'yy-mm-dd' }).val();

Convert Any Date Inserted To ISO Format Without The Timestamp In JavaScript

I want to know how can convert any date that entered to text box using JQuery Datepicker to the ISO date format without the Timestamp. At the below you can find the code sample that I have used.
$("#to_date").datepicker({ maxDate: new Date(),dateFormat: 'yy-mm-dd'});
$("#from_date").datepicker({ maxDate: new Date(),dateFormat: 'yy-mm-dd'});
But when I pass these dates to a JSON web service it shows is invalid date. So what should I do?
Thanks & regards,
Chiranthaka
From original documentation:
Display the date in ISO format. Produces "2007-01-26".
$.datepicker.formatDate( "yy-mm-dd", new Date( 2007, 1 - 1, 26 ) );

Categories

Resources