ufaclub,
<div id="table">
<a href="/reg/live/pay.php?obj=149&login=блаблабла&title=1">750 000 руб.</a>
<a href="/reg/live/pay.php?obj=149&login=блаблабла&title=1">750 000 руб.</a>
<a href="/reg/live/pay.php?obj=149&login=блаблабла&title=1">750 000 руб.</a>
</div>
<button id="button">Button</button>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$('#button').click(function() {
var str = '';
$('#table a').each(function() {
str += $(this).text();
$(this).remove();
});
$('#table').text(str);
});
</script>