function init() {
$$('.usertip').each(function(item){
buildTip('UserInfo.jsp?userid='+item.getAttribute('usertip'),
item);
});
}
function buildTip(url, item) {
new Ajax.Request(url, {
method:'get',
// asynchronous:false,
onSuccess: function (transport) {
//tooltip
function via ProtoTip.js
new Tip(item,
transport.responseText,
{
fixed: true
,hook:{target:'bottomRight',tip:'topRight'}
});
}
});
}
The response text for every request other than the first is completely
blank.
On Aug 23, 4:15 pm, Matt Foster <[EMAIL PROTECTED]> wrote:
> We desire syntax
>
> On Aug 23, 2:59 pm, RussellZ <[EMAIL PROTECTED]> wrote:
>
> > The problem occurs in Firefox as well. The site is on a intranet that
> > is not accessible to the public. I have other pages that are able to
> > do multiple ajax calls without a problem.
>
> > On Aug 23, 10:35 am, Walter Lee Davis <[EMAIL PROTECTED]> wrote:
>
> > > Does the problem follow you to Firefox? Can you post an example of the
> > > problem live somewhere?
>
> > > Thanks,
>
> > > Walter
>
> > > On Aug 23, 2007, at 10:00 AM, RussellZ wrote:
>
> > > > I turned off caching completely (ie dev toolbar) and still get the
> > > > error
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---