The jQuery clueTip FAQ (http://plugins.learningjquery.com/cluetip/ #faq) says the following:
"New as of clueTip 1.0.4: Why don't the styles that I've applied to my local content carry over once they're inside a clueTip? When using an element on the same page to populate the clueTip's content, the plugin clones that element. Because of potential problems caused by duplicate IDs within a page, the plugin also, by default, adds a suffix to the ID of the cloned element. If you have tied styles to the original ID, they won't be carried over. You can either give the localIdSuffix an empty string ( '' ) for its value or add the id to your stylesheet rule." I cannot find where to set the localIdSuffix. Adding it to my setup doesn't seem to work; e.g. $( 'a.mapClue' ).cluetip( { localIdSuffix = '' } ); And I don't see localIdSuffix referenced anywhere in jquery.cluetip.js, jquery.cluetip.css, or lib directory. Ultimately, I'm trying to use javascript inside my cluetip page (local div content) to dynamically hide/show the contents of a div. Ideas? Thanks!