The scenario is as follows.
On a Parent Page we have a div tag with id and Name "placeHolder".
- Step 1: "placeHolder" is filled with Page1 content through an ajax call.
- Step 2: "placeHolder" is filled with Page2 content through an ajax call.
- Step 3: "placeHolder" is again filled with Page1 content through an ajax call.
When the pages are loaded for the first time $(document).ready(function() is getting called , but from step 3 onwards, the ready function is not getting called.
Any direction would be appreciated.