<script> $(document).ready(function(){ // .... Some javascript }); </script>The above dynamic script gets some additional HTML and JQuery using AJAX and appends it to the Body tag but it does not execute after Ajax completes. If I add a simple alert('something') like below then it does execute.
<script> alert('something'); $(document).ready(function(){ // .... Some javascript }); </script>Please tell me what is issue i want execute dynamic script with document.ready() without alert() box ..