There is a textbox that being autocompleted on load.
Suppose that it is a email textboxl
$(document).ready(function () {
var email = $("#txtEmail").text();
});
I try to get the value by this code, but it always return null. how to get that email value being autocomplted ?
var email = $("#txtEmail").val()