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? Link to comment https://forums.phpfreaks.com/topic/194829-using-a-simple-jquery-script-within-an-external-ajax-file/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.