[jQuery] jquery in several iframes

[jQuery] jquery in several iframes


Using several iframes on one page, I want to load jquery (1.1.2) (and
extensions) in one special iframe ("jqueryload") and then use it also
in the other iframes, e.g. "jqueryuse", where it is not explicitly
loaded. I'm trying to reference it, via:
$ = parent.frames["jqueryload"].window.$;
$(document,parent.frames["jqueryuse"].window).ready(function() {
$("div",parent.frames["jqueryuse"].window).css("border", "1px
solid black");
});
But i get the error "this.setArray is not a function". What would be
the correct syntax for referencing jquery from another iframe?
Thanks, Michael