On Sep 14, 3:22 pm, skatta <[EMAIL PROTECTED]> wrote:
> $(".dataWin").hide().load(resultlink);
>
> this works ...
>
> $(".dataWin").hide().load(""+resultlink+"");

resultlink is aparently a non-String object of some type which is not
accepted by load(). Your second line (the one which works) is casting
it to a string. But you don't need both sets of quotes - one or the
other will do:

$(".dataWin").hide().load(""+resultlink);

That will also force it to be a string.

Reply via email to