Response title
This is preview!
<script type="text/javascript">
$(document).ready(
function () {
$("#TextBox1").blur(function () {
$.getJSON('Services/UsernameAvailable.aspx?' + escape($(this).val()), '',
function (results) {
alert(results);
}
);
});
}
);
</script>
What do you mean "does not work"? Alert $(this).val() to make sure you're sending
what you think you are. Does aspx require the URL to have a name value pair like
foo.aspx?name=value?
© 2013 jQuery Foundation
Sponsored by and others.