js09 Posted March 10, 2010 Share Posted March 10, 2010 My site content is called from external AJAX files and I need to be able to use jquery is some of these external files. index.php: <script type="text/javascript"> ajax_loadContent('news3','external/home.php'); </script> and in 'home.php' I have (for example) the html for a jquery script, BUT, the jquery code is still in the index.php <head> portion, so nothing gets called. such as this: <link href="css/galleria.css" rel="stylesheet" type="text/css" media="screen"> <script type="text/javascript" src="js/jquery.galleria.js"></script> <script type="text/javascript"> jQuery(function($) { $('ul.gallery').galleria(); }); </script> How can I mix these two languages? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.