Ok, here is what is happening...in simple terms.
I am loading PHP content into a page using AJAX... but certain elements being loaded from the php need specific JS to work (scriptaculous) and I cant load it befoer hand since I need to know the PHP content for the JS.
PROBLEM: I tried using <script> tags as recommended by everyone online... but the script tags arent being processed for some reason. ( i think because the parsed HTML from the PHP page is inserted into a DIV and not read like normal HTML)
Anywho... I need a way to call JS from the PHP page (like the inline <script> tag) but not having the user click a button or anything.
Any ideas?