Im looking to create a tooltip or cluetip (such as: http://craigsworks.com/projects/simpletip/# ) to work with an array generated by Wordpress Custom Content. Code below is what I currently have.
<?php
$my_arr = get_custom_field('product_options');
$opts = array(
'Option 1' => '<div>Option 1 description</div>',
'Option 2' => '<div>Option 2 description</div>',
'Option 3' => '<div>Option 3 description</div>',
);
$opts_arr = array_keys($opts);
if ( is_array($my_arr) ) {
foreach($opts_arr as $opt) {
if ( in_array($opt, $my_arr) ) {
print '<strong> Option Array: </strong> <br />' . $opt . $opts[$opt]; // will print the description for checked items.
}
}
}
?>
What this code does: Items within $myarr show up based on a checkbox clicked by admin user. If the checkbox is selected, than that item will show up in the array. If the item is not clicked than it never shows up in the end-user product page.
Image of backend array control: http://leopardspot.endofinternet.net:81/ImageServer/nooptionschecked.jpg
Can jquery's delegate or live action be used to connect the array items (<div>Option 1 description</div>) with Jquery's cluetip? My goal is to get the array to dynamically generate and than be passed to a jquery cluetip.
Simply put, if the above checkboxes are clicked, the end user will see "Option __" show up (due to the above code I already wrote) as a hyperlink. When the "Option _" hyperlink is clicked, the cluetip will show up containing whatever is in the corresponding '<div>Option 1 description</div>'
Any ideas?