Using a simple jquery script within an external AJAX file?

Discussion in 'jQuery' started by js09, Mar 10, 2010.

  1. #1
    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>
    Code (markup):
    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>
    Code (markup):
    How can I mix these two languages?
     
    js09, Mar 10, 2010 IP
  2. js09

    js09 Peon

    Messages:
    232
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Anyone? Maybe i've explained it a little awkward. This is fairly common practice right?
     
    js09, Mar 11, 2010 IP