選択/リストコントロールに時間文字列を入力します。例:05:40リスト値がjqueryまたはjavascriptで変更されるたびに、20分を追加し、テキストボックスに入力します。
$(document).ready(function() {
$("#starttimeList").change(function() {
var selectVal = $('#starttimeList').val();
////// HERE I WANT MY CODE AS selectVal is getting value of select control e.g. 05:40 and entTime is my textbox where I want the time added with 20 minutes.
$("#endTime").val(selectVal);
});
});