Показать сообщение отдельно
  #2 (permalink)  
Старый 22.06.2016, 21:19
Профессор
Отправить личное сообщение для Decode Посмотреть профиль Найти все сообщения от Decode
 
Регистрация: 31.01.2015
Сообщений: 576

ufaclub,
<div id="table">
	<a href="/reg/live/pay.php?obj=149&amp;login=блаблабла&amp;title=1">750 000 руб.</a>
	<a href="/reg/live/pay.php?obj=149&amp;login=блаблабла&amp;title=1">750 000 руб.</a>
	<a href="/reg/live/pay.php?obj=149&amp;login=блаблабла&amp;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>
Ответить с цитированием