|
Modified: jquery/jquery.xsajax.test.html =================================================================== --- jquery/jquery.xsajax.test.html 2007-04-12 19:00:35 UTC (rev 29) +++ jquery/jquery.xsajax.test.html 2007-04-13 08:33:15 UTC (rev 30) @@ -16,10 +16,10 @@ $(document).ready(function () { $('div#logbook').append("1. start sequence<br/>"); $.getScriptXS({ url: "jquery.xsajax.test1.js", cb: function(i) { - $('div#logbook').append("3. loaded script "+i+"<br/>"); + $('div#logbook').append("5. loaded script "+i+"<br/>"); }, cb_args: "1" }); $.getScriptXS({ url: "jquery.xsajax.test2.js", cb: function(i) { - $('div#logbook').append("4. loaded script "+i+"<br/>"); + $('div#logbook').append("8. loaded script "+i+"<br/>"); }, cb_args: "2" }); $('div#logbook').append("2. end sequence<br/>"); });