Witam tak jak w temacie mam problem z tymi przegladarkami. Na IE wszystko chodzi głatko. wklejam tylko fragment tworzacy obiekt xmlhttprequest.
  1. function createXMLHttpRequest(){
  2. var xmlHttp;
  3.  
  4. if ( window.ActiveXObject ){ /* jeśli IE 6 lub starszy */
  5. xmlHttp = new ActiveXObject('Microsoft.XMLHttp');
  6. }
  7. else if(window.XMLHttpRequest){ /* dla innych przeglądarek */
  8.  
  9. xmlHttp = new XMLHttpRequest();
  10. }
  11.  
  12. if ( !xmlHttp ) {
  13. alert('Nie udało się.');
  14. }
  15. else {
  16. return xmlHttp;
  17. }
  18. }


prosze o pomoc smile.gif