I have a form in which I have Field named 'Start Time' and 'Stop time'.Data in start time field is entered by user and stop field is in disabled mode initially. I want to enable the stop field after the 3 hrs of the entered value in start time. is it possible by java script/php/html.Which is the best way to achieve it.My java code is
function timedOut() {
alert("First Process Completed");
}
// set a timer
setTimeout( timedOut , 600000 );
I am calling this java function on the click on the submit button.Can i do it automatically after one hour of enterd value in start filed.