Допустим, у меня есть это:
<code><div id="wrapper">
<pre class="highlight">
$(function(){
// hide all links except for the first
$('ul.child:not(:first)').hide();
$("a.slide:first").css("background-color","#FF9900");
/*
The comment goes here.
*/
С помощью jQuery я хочу найти промежуточное:
/*
The comment goes here.
*/
Включаязнаки комментариев.Так должно получиться:
/*
The comment goes here.
*/
Как это сделать, как найти текст между двумя точками?