$.fancybox.open({
src : '#p_ok',
type : 'inline',
opts : {
afterShow : function( instance, current ) {
// предположим у тебя есть тег с id=username который внутри #p_ok
document.querySelector('#p_ok #username').textContent = '<Сюда вставишь имя>';
}
}
});