Hi,
In javascript I can use the following code both ways, i.e:
var a = document.getElementById("emp").value;
document.getElementById("emp").value = a;
So I can basically retrieve a value as well as assign a value using ...().value
In jQuery, what is the equivalent to the above, i.e retrieve and assign
Thanks. Tony.