This is the scenario:

The user clicks on e.g. a button, that loads (using jQuery) a node, e.g.

'<span id="selected" title="|click to reselect">selected: #' + id + '</span>'

Then goes jQuery (for cluetip) code:

$('#selected').cluetip({splitTitle: '|', showTitle: false});

Cluetip applied to that jQuery loaded node does not fire.

Anyone knows the solution?

Much appreciated.

link|improve this question

Are you reapplying the plugin cluetip after you create the <span>? – rfausak Sep 24 '11 at 17:20
feedback

2 Answers

up vote 1 down vote accepted

Here's an example:

$('#button').click(function () {
    $('#container').append('<span id="selected">...</span>');
    $('#selected').cluetip();
});
link|improve this answer
yup ... reapp did the trick .. thanks – Jeffz Sep 24 '11 at 17:30
feedback

Try putting your reference to ClueTip at the bottom of your page, not in the header.

<script type="text/javascript" src="cluetip url here"></script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.