[jQuery] cluetip question
I'd like to set a default style for cluetips in my project. Since I'm
abstracting cluetip for my fellow programmers by wrapping it in PHP, I
don't like to add "cluetipClass: 'jtip'" to every call.
Can I do something like:
$.cluetip.setup({ cluetipClass: 'jtip' });
$("a.cluetip").cluetip();
$("a.cluetip2").cluetip({ some:other_option });
I tried, but it doesn't work like this now.
A global style would be a major improvement I think, you shouldn't
have to set the style for every cluetip.