[jQuery] cluetip - Plugin with .load() not working

[jQuery] cluetip - Plugin with .load() not working


Hi Jqueries
The cluetip-Plugins works fine, as long as you have content and Script
on the same page.
But when it comes to use cluetip with the .load()-function, it's not
working (no errors whatsoever).
index.html-file in demo-folder:
[code]
$('#inc').load('inc.html',
    function(){
        $('span[@title]').cluetip(); <-- no response
        alert( 'file loaded!' ); <-- works
    }
)
[/code]
inc.html:
[code]

<span title="This text should show up in cluetip">Mouseover test
(title)</span>


[/code]
It does not help to put
[code]
$('span[@title]').cluetip();
[/code]
in the $.document(ready)-Container....
Any suggestions?
Am I missing something?
Thanks for inputs and clues :-)
QT