Hi guys!
Exactly what my title says is the problem Im having right now.
Im checking a div for how many links php printed and if there is more than 10 Id like to hide them and add a button that says read more and then it show the rest of the links.
$(document).ready(function() {
var newsRss = $('#rssNews >li').length;
var driftRss = $('#rssDrift >li').length;
$(window).load(function() {
if(newsRss > 10)
alert(newsRss);
});
});
this is how far I got with the code.
Ill be happy to hear every tip and trick you guys can help me with!
Best Regards,
Charlie