How to get the IST current date and time using java script with out help of local client system time.
var dt = new Date();
var time = dt.getHours() + ":" + dt.getMinutes() + ":" + dt.getSeconds();
$("#dbTimeIn").val(time);
$("#dbTimeOut").val(time);