[jQuery] cluetip + only title

[jQuery] cluetip + only title


Hi all!
I have an annoying but easy problem with cluetip:
I have:
<a title="do not click me" class="tooltip">link</a>
$('.tooltip').cluetip({splitTitle: '|', showTitle: false});
I want almost the same, but without any title. Is that possible?
My workaround was to write:
<a title="|do not click me" class="tooltip">link</a>
and use showTitle:false in the options, but it seems a bit hackish...
thanks
Gergo