views:

60

answers:

1

How do you refresh the beauty tips plugin? I'm trying to change beauty tips applied to an element when on a click event. I would be happy either

  1. disabling the beauty tip for that element when it is clicked or

  2. changing the content of the beauty tip when it is clicked.

It seems like I can change the "options" array no problem, but it doesn't reflect that change in the beauty tip.

+1  A: 

To disable BT on an element, use this syntax:

$('selector').btOff(); 

To re-enable BT use:

$('selector').btOn();
Dirk