$(document).ready(function(){ $(".news_story ul, .news_story p, .news_img").not(".news_intro, .news_date").hide(); $(".more_news a").toggle( function(){ $(this).text("<< Read Less"); $(this).parent().siblings("ul, p, .news_img").not(".news_intro, .news_date").show(); }, function(){ $(this).text("Read More >>"); $(this).parent().siblings("ul, p, .news_img").not(".news_intro, .news_date").hide(); } ); });