Jquery通过外部JS文件动态加载Growler

I'm trying to push growler notifications dynamically generated in a php file..

Heres my main file.

                    jQuery(document).ready(function() {
                        jQuery("#test").click(
 function () {


 jQuery.getScript("php/live_updates.php");

 });
                        });

and heres the live_updates.php

<script type="text/javascript">
 jQuery(document).ready(function() {
jQuery.jGrowl("One");
jQuery.jGrowl("Two");
jQuery.jGrowl("Three");
 }); </script>

Looking in my web console its getting the file but not running the growlers..

Anyone got any ideas