I'm using jQuery boxy plug in for Ajax modal pop up window and and populating it through Ajax. In that window populate combo box using Ajax first time it will populate. But when I close modal window and again open it and hit the button, the combo box does not populate.

I'm using php as server side language.

How to fix it and where am I making a mistake?

Here is the code

link|improve this question

0% accept rate
1  
Where is the code? – Mischa Sep 10 '10 at 12:32
Please edit your answer to include code – meagar Sep 10 '10 at 13:30
Is your combo box being populated with an Ajax request? – jakenoble Sep 10 '10 at 13:52
feedback

1 Answer

I had an issue like this.

Remember that any javascript that is returned in your Ajax response will not be executed. All javascript needs to be loaded and bound to the correct elements when the first page loads.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.