[jQuery] Newbie Cluetip Question

[jQuery] Newbie Cluetip Question


I'm trying to craft a simple Ajax-based Cluetip using a $.get that
passes along a singe key/value pair and brings back some simple HTML.
I keep getting javascript syntax errors.
Here's what I want to accomplish:
prodtips.php?p=mbt35
Using the jQuery $.get sample found here:
http://docs.jquery.com/API/1.1/AJAX#.24.get.28_url.2C_params.2C_callback_.29
I put this together:
ajaxSettings: { $.get("prodtips.php", { p: "mbt35" } ) }
When I drop the above on the end of this useless but well-formed (no
javascript errors) cluetip code:
$('a.tt2').cluetip({ width: '360px', ajaxCache: true, arrows: true,
sticky: true, closePosition: 'title' });
resulting in this:
$('a.tt2').cluetip({ width: '360px', ajaxCache: true, arrows: true,
sticky: true, closePosition: 'title', ajaxSettings: { $.get
("prodtips.php", { p: "mbt35" } ) } });
I get the following javascript error:
missing : after property id
and for the life of me I can't see what I'm doing wrong. Can someone
show me the correct syntax for this simple goal.
Thanks...