A
A
Aleksandr2016-04-04 21:21:33
RSS
Aleksandr, 2016-04-04 21:21:33

Combining multiple RSS feeds into one: which service or script to choose?

Recommend a free online service or (self-hosted-)script to merge multiple (2-10) RSS feeds into one. It would be nice if the resulting feed could be "feeded" to Feedburner.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Alexander Taratin, 2016-04-04
@alexgearbox

https://tt-rss.org/gitlab/fox/tt-rss/wikis/home

I
itech523, 2016-12-15
@itech523

m.b. informer.com? I was quite satisfied.

A
Arthur, 2015-02-26
@hronik87

window.location.pathname- returns the address with a leading slash
Try to substitutewindow.location.pathname.substring(1)

<html>
<style>
.content-menu li.active{
  background: #c7760c;
}</style>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script>
$(document).ready(function(){
    var link = window.location.pathname.substring(1);
  console.log( link );
    $('.content-menu li a[href="'+link+'"]').parent().addClass('active');
});</script>
<body>
  <div class="content-menu-wrap">
                	<ul class="content-menu">
                    	<li><a href="page2.html">Управление недвижимостью</a></li>
                        <li><a href="arenda.html">Аренда квартир и домов</a></li>
                        <li><a href="buy-house.html">Покупка недвижимости</a></li>
                        <li><a href="test.html">Наши предложения</a></li>
                        <li><a href="home-type.html">Типы домов</a></li>
                        <li><a href="insurance.html">Система страхования</a></li>
                        <li><a href="schools.html">Школы для Ваших детей</a></li>
                        <li><a href="payment.html">Ипотека</a></li>
                        <li><a href="apartment-type.html">Словарь терминов</a></li>
                        <li><a href="immigration.html">Иммиграция</a></li>
                    </ul>
             </div>
</body>
</html>

A
agoge, 2015-02-26
@agoge

Set the style simply

.active{
  background: #c7760c;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question