I am using AJAX to call a html file and the file uses jquery and javascript which I have already called in the page before .But the javascript (and CSS) are not being executed. How can we get my javascript to work.
2 Answers
With the limited information you provided the only solution I can think of is to use jQuery's $.get() more about it here
$.get("yourjsfile.js");//It will request your file and execute it $.get("yourcssfile.css");//Similarly for your CSS file.