Request a Quote
Assessment Tool
Assessment Tool
var initial_show_article = 6; var article_reveal = 2; jQuery(".col3-blog article").not( ":nth-child(-n+"+initial_show_article+")" ).css("display","none"); jQuery("#load_more").on("click", function(event){ event.preventDefault(); initial_show_article = initial_show_article + article_reveal; jQuery(".col3-blog article").css("display","block"); jQuery(".col3-blog article").not( ":nth-child(-n+"+initial_show_article+")" ).css("display","none"); var articles_num = jQuery(".col3-blog article").not('[style*="display: block"]').length if(articles_num == 0){ jQuery(this).css("display","none"); } }) } else { //For desktop Screens var initial_row_show = 2; var row_reveal = 2; var total_articles = jQuery(".col3-blog article").length; jQuery(".col3-blog article").not( ":nth-child(-n+"+initial_row_show+")" ).css("display","none"); jQuery("#load_more").on("click", function(event){ event.preventDefault(); initial_row_show = initial_row_show + row_reveal; jQuery(".col3-blog article").css("display","block"); jQuery(".col3-blog article").not( ":nth-child(-n+"+initial_row_show+")" ).css("display","none"); var articles_num = jQuery(".col3-blog article").not('[style*="display: block"]').length if(articles_num == 0){ jQuery(this).css("display","none"); } }) } })
Assessment Tool