Open
Description
It would be nice to be able to dynamically modify the content of the tooltip with a setContent method that could take either a HTML string or jQuery element as an argument.
IE:
$hello = $('<p>Hello World</p>');
$.powerTip.setContent('<p>Hello World</p>');
// OR
$.powerTip.setContent($hello);