hi, i want to load a page after a textbox looses its focus.But it not working. What is wrong in it?
$(function() {
$("#txtBox").blur(function() {
$('#LoadPage').load("Defult.aspx");
});
});
hi, i want to load a page after a textbox looses its focus.But it not working. What is wrong in it?
$(function() {
$("#txtBox").blur(function() {
$('#LoadPage').load("Defult.aspx");
});
});
Make sure that your textbox's ID is set to "txtBox". Could you post the rest of the code, too?
EDIT Like Nick
commented below, did you misspell Default.aspx
as Defult.aspx
?