Ajax - Related Prob :(

Ajax - Related Prob :(

 I am trying to retrieve data from web services using j-query $.ajax method from local browser

 $.support.cors = true;
 $.ajax
       ({
           type: "POST",
           url: myUrl + "/" + method,
           data: param,
           dataType: "json",
           contentType: "application/json; charset=utf-8",
           crossDomain: true,         
           cache: false,
           processdata: true,
           success: function(data) {
               try {
                   data = $.parseJSON(data.d);
                  
               }
               catch (Error) {
                
               }
           },
           error: function(response) {
              
           }
       });

in mobile its working fine. But when i run it on local web browser its shows error as below


XMLHttpRequest cannot load http://myurl.asmx/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin ' http://localhost:52788' is therefore not allowed access.