$.post does not work on server

$.post does not work on server

Hi there,

the follwing script works fine on xampp at home:

  1. $(".SFV_I").live('click',function(event)
  2.   {
  3.     
  4.     whereVal=$(this).attr("whereVal");
  5.     vars=$(this).attr("vars");
  6.     idHtml=$(this).attr("idHtml");

  7.     alert("1111111");
  8.     $.post("do/setFieldVal_Input.php", {whereVal:whereVal, vars:vars}, function(data)
  9.     {
  10.       alert("22222222");
  11.       //document.getElementById('test').innerHTML=data;
  12.       document.getElementById(idHtml).innerHTML=data;
  13.     });        
  14.     event.preventDefault();
  15.   });

but on the server it only reaches the first alert, the second does not show up. The Console in Firefox does not show any error???