Na samym początku prośba o wyrozumiałość bo styczność z ajaxem i java sript'em dopiero zaczynam.
Tak więc mam:
index.html
  1. <meta http-equiv="Content-type" content="text/html; charset=ISO-8859-2" />
  2. <link rel="stylesheet" href="styl.css" type="text/css" />
  3. <script type="text/javascript" src="funkcje.js"></script>
  4. <script type="text/javascript" src="advajax.js"></script>
  5. </head>
  6. <body onload="load()">
  7.  
  8. <div id="divg">
  9. TEST 1
  10. </div>
  11.  
  12. <div id="divd">
  13. TEST 2
  14. </div>
  15.  
  16. <div id="con">
  17. TEST 3
  18. </div>
  19. </body>

funkcje.js
  1. function load() {
  2.  
  3. advAJAX.setDefaultParameters({
  4. onInitialization : function(obj) { document.getElementById(obj.tag).innerHTML = "Preparing..."; },
  5. onLoading : function(obj) { document.getElementById(obj.tag).innerHTML = "Loading..."; },
  6. onSuccess : function(obj) { document.getElementById(obj.tag).innerHTML = obj.responseText; },
  7. onError : function(obj) { document.getElementById(obj.tag).innerHTML = "Error..."; }
  8. });
  9. advAJAX.get({ url: "test1.php", tag:"divg" });
  10. advAJAX.get({ url: "test2.php", tag:"divd" });
  11. advAJAX.get({ url: "t1.html", tag:"con" });
  12.  
  13. advAJAX.setDefaultParameters({});
  14. }

No i do tego miejsca jest wszystko OK.
plik t1.html to:
  1. <div>
  2. <form actiont="t2.php" method="post" id="form1">
  3. <input type="text" name="l1">
  4. <input type="text" name="l2">
  5. <input type="submit" value="wylicz">
  6. </form>
  7. </div>
  8. <script type="text/javascript">
  9. advAJAX.assign(document.getElementById("form1"),
  10. ({
  11. disableForm : false;
  12. onSuccess : function() { document.getElementById('con').innerHTML =obj.responseText; },
  13. onError : function() { document.getElementById('con').innerHTML ="Error..."; }
  14. });
  15. </script>
  16.  
  17. </html>

Plik t2.php wylicza sumę l1 i l2 i zwraca echem wynik.
Moje problemy.
1. Dlaczego do <div id="con"> ponownie ładuje mi formularz a nie zwraca echo z t2.php questionmark.gif?
2. Dlaczego także pozostał div'y podlegają odświeżeniu questionmark.gif?
Nie zabardzo to wszystko ogarniam. A nie znalazłem żadnego tutoriala do advAJAX może ktoś wie gdzie ?

Proszę o pomoc i wskazówki.

Kurcze nie łapie tego.