you have to add a onComplete option to your Requset.HTML with a attach
method like so:

var tip = new Tips('.Tips');

var tabRequest = new Request.HTML( {
        url: 'ajaxTip.html',
        update: $('ajaxTips'),
        method:'get',
        evalScripts: true,
        onComplete: function() {
                tip.attach('img.Tips');
        }
});
tabRequest.send();

a demo can be seen here:http://www.shaunfreeman.co.uk/test/tips/
test1.html
also see docs http://www.mootools.net/docs/Plugins/Tips#Tips:attach

On Dec 22, 8:28 pm, Mark <[email protected]> wrote:
> I'm loading some of my page (text in a div) dynamically using the
> mootools request.HTML.
>
> After loading I want to add a (mootools) Tip to an element in this
> text. I marked the text with a span, with a unique ID.
>
> But I don't get the Tip activated. How can I do this?

Reply via email to