I dont really get your question. You want a dynamic link which gives a url and a title?
i created a click on the class which grabs the href + title of the link and uses it in your code, is this what you mean?
you js:
$('.classname').click(function(){
var url = $(this).attr('href'); //get the attribute href
var title = $(this).attr('title'); //get the attribute href
lightbox.alert({
width: '400px',
title: title,
rightButtons: ['Close'],
background: 'black',
fade: 'false',
opened: function(){
$('').load(url).appendTo('#lbContent');
},
buttonClick: function(button){
console.log(button);
}
});
return false;
});