yeah, was weird though ... it worked up to 1.1.3

here is what it was - it was simply a click to a link, grabbing the
target ...

link like this - <a href="http://example.com/"; class="partInfo">link</
a>

if ($(event.target).is('.partInfo')) {
var resultlink = event.target;
// then load it
}




On Sep 14, 10:31 am, Stephan Beal <[EMAIL PROTECTED]> wrote:
> 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);
>
> Th
at will also force it to be a string.

Reply via email to