I have this div:
<div class="transparency" data-title="<? echo $perf; ?>"> </div>
An this is the jquery code which extracts the data-title value and replaces the   with it.
function performerNames(){
var performername = $(".transparency").data('title');
var divcontent = $(".transparency").innerHTML;
if (divcontent == ' '){
$(".transparency").html(''+divcontent+'');
}
}
Ty very much!
performerNames()somehow?