Hmmmm, I've made some investigation with Fiddler tool and Firebug and
required data are transferred correctly, but when I'm making alert
(ret); I don't have received value in this variable :/ But it's only
in ie6/7 Any ideas?

On Feb 27, 11:16 am, "r1u0...@gmail.com" <r1u0...@gmail.com> wrote:
> Hi,
> I've  got some code which is working fine in FF3, Opera 9 and IE8 (!).
> But it's not working in IE6/7.
>
> What could be a problem?
>
>  $(document).ready(function() {
>
>             $.ajax({
>                 type: "POST",
>                 dataType: "text",
>                 processData: false,
>                 url: "./DFWebService.asmx/checkLoginTyp",
>                 data: "",
>                 success: function(data) {
>
>                     var ret = "#";
>                     ret += $(data.replace(/&lt;/g, "<").replace(/&gt;/
> g, ">")).text();
>                     $(ret).attr("checked", "checked");
>                     $(".login").removeAttr("disabled");
>                 }
>             });
>
> });
>
> On the website there are 2 radiobuttons with id and I'm receiving this
> id from web service.
> I've checked and I'm receiving it correctly, but it's not marking any
> at all. And also it's not removing attribute disabled from them.
> This problem occurs only in IE7 in other browser everything is ok.

Reply via email to