Jump to content

Using a simple jquery script within an external AJAX file?


js09

Recommended Posts

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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.