1

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");
    });
});   
1
  • 1
    Is that a typo in your page name? Commented Oct 29, 2010 at 13:25

1 Answer 1

1

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?

Sign up to request clarification or add additional context in comments.

2 Comments

yes the id is 'txtBox' for sure. what else code is needed? There is one div whose id is 'LoadPage'
@koin - you sure it isn't "Default.aspx"?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.