104
Little progress, but just jumping from one problem to another. I finally put the need values into the id.

$imagebar .= '
.$id.'|'.$xpidstack[$thekey].'|'.$path.'|'.$equal.'" src="'.DEBASER_URL.'/images/playericons/'.$iconstack[$thekey].'" alt="'.$namestack[$thekey].'" title="'.$namestack[$thekey].'" /> ';
$(document).ready(function () {
$("img.innertrigger").click(function () {
var splitit = this.id.split("|");
$("#showthecode").load("'.DEBASER_URL.'/ajaxed.php", { action : "ajaxinner", part1 : splitit[0], part2 : splitit[1], part3 : splitit[2], part4 : splitit[3] });
});
});
So far so good, as the values get posted. But now in ajaxed.php the data have to be processed, a thickbox should be displayed AND if splitit[3] has a value an equalizer should be displayed. Yet I don't know how to solve this...