Не проверял, так как негде.
Code
$.get('/board/', function(a) {
var b = [/* Ссылки */], c = [/* Атрибуты */];
$('a', a).each(function() {
if(this.href != 'javascript://' && this.getAttribute('id') == 'pageS') {
b.push(this.href);
} else {
c.push(this.getAttribute('onclick'));
}
});
for(var i = 0; i < b.length; i ++) {
$.get(b[i], function(d) {
if($(d).text().indexOf('/* Искаемое слово */') != -1) {
alert('Да');
} else {
alert('Нет');
}
});
}
})