I думаю вы ищете что-то вроде этого:
jQuery().ready(function() {
// with each help element....
jQuery('.help').each(function () {
// create the empty mark, add the title from help, append mark to help
$('<div class="mark"></div>').attr('title', $(this).attr('title')).appendTo(this);
});
});
Это добавит div.mark
к каждому элементу справки и установит заголовок метки в качестве заголовкародительской помощи.