[jQuery] problem with $.ajax()

[jQuery] problem with $.ajax()

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.3132" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>
<DIV><FONT face=Arial size=2>Hi all,</FONT></DIV>
<DIV><FONT face=Arial size=2>i'm developing an intranet order application using
many ajax calls; this app is fine on my pc intel pIV-2800 Mhz based, and on
the internet, but when i try to install in on the server on the intranet, it
fails.</FONT></DIV>
<DIV><FONT face=Arial size=2>this server has an amd athlon x64 4400+, with 2Gb
RAM.</FONT></DIV>
<DIV><FONT face=Arial size=2>if tou test <A
href="">http://www.fusto.org/sangermano/index.cfm?event=taglioModelli</A>, when
selecting modello , my app run thre chained ajax call, completing the upper
form, buton the amd server, only the first call is made.</FONT></DIV>
<DIV><FONT face=Arial size=2>this app is based on adobe cf 7.0.2 and model
glue.</FONT></DIV>
<DIV><FONT face=Arial size=2>the ajax chain,  when selecting modello,
is:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>function
taglie(){<BR> $("div#clientiMT").html("");<BR> $("#coloriTessutoDaTagliare").html('');<BR> $("#tNeeds").html('');<BR> $("#aMarchi").html('');<BR> $("#aAppendini").html('');<BR> $("div#coloriTessutoDaTagliare").html("");<BR> $("div#tNeeds").html("");<BR> var
myMod = $("#modelliOrdinati").val();<BR> var theUrl =
"index.cfm?event=taglie";<BR> $.getJSON(theUrl,{modello:myMod},function(dati){orderedTM(dati)});<BR>}</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>function
orderedTM(dati){<BR> $("#modTaglie").val(dati.TAGLIE);<BR> $("#modelliInCompleto").val(dati.COMPLETO);<BR> $("td#leTaglie").html('');<BR> $("td#orderedTM").html('');<BR> var
myMod= $("#modelliInCompleto").val();<BR> var myUrl =
"index.cfm?event=modelliInCompleto&modello=" +
myMod;<BR> $.get(myUrl,function(dati){esplodiMC(dati)});<BR>} </FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>function
esplodiMC(dati){<BR> $("tr.modelliInCompleto").remove();<BR> $("#trModello").after(dati);<BR> var
myMod= $("#modelliOrdinati").val();<BR> var myUrl =
"index.cfm?event=TxMordinato&modello=" + myMod;<BR> if (myMod !=
"0"){<BR>  $("td#orderedTM").html('<img
src="assets/images/loader-blue.gif"');<BR>  $("td#orderedTM").load(myUrl);<BR> }<BR>} <BR></FONT> </DIV>
<DIV><FONT face=Arial size=2>has anyone ever had a similar problem?</FONT></DIV>
<DIV><FONT face=Arial size=2>regards</FONT></DIV>
<DIV><FONT face=Arial size=2>salvatore</FONT></DIV></FONT></DIV></BODY></HTML>