We need to bind such like two way binding . When i change value at also display value in content using Javascript or Jquery..
function myFunction() {
var val = '';
val = document.getElementById("text1").value;
document.getElementById("demo").innerHTML = document.getElementById("demo").innerHTML + val;
}
<p>Select a new car from the list.</p>
<input type='text' id="text1" onKeyup="myFunction()">
<p>When you select a new car, a function is triggered which outputs the value of the selected car.</p>
<p id="demo"></p>
If you any idea then help me !!! Thank you in advance
KnockoutJSorAngularJS? Those are better options for your casemySelectid?