jQuery stopped loading script in 1.4.2

jQuery stopped loading script in 1.4.2

Hey!

I recently tried to upgrade from 1.3.2 tot 1.4.2, but I'm having some issues. I'm not sure this should be in the 'Using jQuery Plugins'-section...

At the moment I'm using jQuery 1.3.2 and the plugin Ajaxify 2.00 (this one: http://max.jsrhost.com/ajaxify/).

The script I'm using is this:
  1. $('.link_ajax').livequery(function(){
            $(this).ajaxify({
            tagToload:{'#AjaxText':'#middle_ajax', '#AjaxTitle:'#top_ajax'},
            loading_fn: function(){
                cmsMessage('loader',loaderMessage);
            },
            onError: function(){
                cmsMessage('error','errorMessage');
            },
            onSuccess: function(){
                $('#ajax_message').hide().removeClass().html("");

            }
            });













The loading page contains a div called "#AjaxText" and a div called "#AjaxTitle". The first div also contains a line with "<script type="text/javascript" src="xxx.js"></script>". In jQuery 1.3.2 the whole script works fine. Ajaxify loads the data I request, puts the data where it belongs on the page en the additional javascript-file gets loaded and is ready to use in the loaded data.

in jQuery 1.4.2 the script doesn't work. Ajaxify loads the data, puts the data where it belongs on the page... But the additional javascript-file doesn't load... In fact, when I alert() the data after it gets stripped, the line <script>....</script> is gone?