Reputation: 391
I have a MVC Code which seperates DateTime into two input fields and a button which save changes
@model WorkOrderDetailsViewModel
<div class="col-sm-3">
<span>Start Date:@Html.TextBoxFor(m => m.StartDateTime, new { @class = "form-control", id="StartDate", @placeholder = "MM/DD/YYYY" })</span>
</div>
<div class="col-sm-3">
<span>Start Time:@Html.TextBoxFor(m => m.StartDateTime, new { @class = "form-control", id="StartTime", @placeholder = "MM/DD/YYYY" })</span>
</div>
<div class="row">
<button id="changeDate" class="btn btn-sm btn-primary pull-right">Save Changes</button>
</div>
Now How can I combine those two dates and time and show them on alert on clicking on save changes using jquery. My jquery Code is :-
$("#StartDate").datetimepicker({
format: "L",
minDate: moment()
}).data("DateTimePicker").date(moment.unix(getUrlParameter("time")).utc());
$("#StartTime").datetimepicker({
format: "hh:mm A"
}).data("DateTimePicker").date(moment.unix(getUrlParameter("time")).utc());
$("#changeDate").click(function () {
alert(); // I nees to show the combined value of date and time
});
Upvotes: 0
Views: 370
Reputation: 1751
The following code will show the date and time in a alert box
$("#changeDate").click(function () {
var startDate = $("#StartDate").val();
var startTime = $("#StartTime").val();
alert("Date and time: " + startDate + " - " + startTime )) {
});
Upvotes: 1
Reputation: 87
$("#changeDate").click(function () {
alert($("#StartDate").val() + " - " + $("#StartTime").val())
});
Upvotes: 1