jQuery if something is more than value then hide and add a button to show whats hidden?
        Posted  
        
            by Charlie
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Charlie
        
        
        
        Published on 2010-04-15T15:40:34Z
        Indexed on 
            2010/04/15
            15:43 UTC
        
        
        Read the original article
        Hit count: 613
        
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
© Stack Overflow or respective owner