Explore the latest Persistent press releases

Contact us

(*) Asterisk denotes mandatory fields

    You can also email us directly at [email protected]

    You can also email us directly at [email protected]

    '; totalPost = 'No Results'; } if(postType=='client-success') { if(totalPost>0) { totalPost = 'Client Success Stories ('+response.totalPost+')'; } $('.section-wrap').remove(); $(responseHtml).insertBefore('.loadmore'); }else if(postType=='cloud-case-studies') { if(totalPost>0) { totalPost = 'All Stories ('+response.totalPost+')'; } $('.section-wrap').remove(); $(responseHtml).insertBefore('.loadmore'); }else if(postType=='client-stories') { if(totalPost>0) { totalPost = 'Client Stories ('+response.totalPost+')'; } $('.section-wrap').remove(); $(responseHtml).insertBefore('.loadmore'); }else if(postType=='career-job-postings' ){ if(totalPost==0){ responseHtml = '
    There are no Job opening as per filter.
    '; totalPost = 'No Jobs'; } else { totalPost = 'All Jobs('+response.totalPost+')'; } $('.accordion-job-list').html(responseHtml); $(".accordion .collapse").on("shown.bs.collapse", function () { $(this).prev().addClass("active-acc"); }); $(".accordion .collapse").on("hidden.bs.collapse", function () { $(this).prev().removeClass("active-acc"); }); } else if(postType == 'search') { totalPost = response.total_post; if(totalPost==0){ responseHtml = '
    No Result Found. Please try with different filters.
    '; totalPost = 'No Result'; $('.search-page-desc .data').html('') } else { if(totalPost==1) { totalPost = totalPost+ ' Search Result'; } else { totalPost = totalPost+ ' Search Results'; } $('.search-page-desc .data').html(response.search_result_desc) } $('#search-result-data .card-list').html(responseHtml) // $('.filter_result_number').html(response.total_post) $('.search-pagination').html(response.total_page) } else { if(postType=='insight' || postType =='tags' || postType =='category') { $('.insghtremove').remove(); } if(totalPost>0){ if(postType=='insight') { totalPost = 'All Insights ('+response.totalPost+')'; } else if(postType=='event'){ totalPost = 'All Events'; }else if(postType=='press-release'){ totalPost = 'All Press Releases ('+response.totalPost+')'; }else if(postType=='awards'){ totalPost = 'All Awards ('+response.totalPost+')'; }else if(postType=='news'){ totalPost = 'All News ('+response.totalPost+')'; }else if(postType=='whitepaper'){ totalPost = 'All Whitepapers ('+response.totalPost+')'; } else if(postType=='post'){ totalPost = 'All Blogs ('+response.totalPost+')'; } else if(postType=='innovation-bytes'){ totalPost = 'All Innovation Bytes ('+response.totalPost+')'; } else { totalPost = 'All Stories ('+response.totalPost+')'; } } $('.loadmore').parents('section').find('.loaddata').html(responseHtml); } $('.filter_result_number').html(totalPost); if(!response.loadmore) { $('.loadmore').addClass('d-none'); } else { $('.loadmore').removeClass('d-none'); } if(postType == 'search') { // var stickyHeaderHeight = $('#stickyHeader').height(); // $('html, body').animate({ // scrollTop: $(".filter-wrapper").offset().top - stickyHeaderHeight // }, 2000); $('.custom-loader').removeClass('d-inline-block').addClass('d-md-none'); } else { $('.custom-loader').removeClass('d-inline-block').addClass('d-none'); } } }); } function loadmore(e) { var postType = $('.filterform-js').attr('data-posttype'); var postPerPage = $('.filterform-js').attr('data-postperpage'); var paged = $('.filterform-js').attr('data-paged'); var offset = $('.filterform-js').attr('data-offset'); var arrayfilter = {}; var postType = $('.filterform-js').attr('data-posttype'); var sliderPosts = $('.filterform-js').attr('data-sliderpost'); var curOffset = window.pageYOffset; $('.send-data').each(function(){ var dataValue =[]; var dataType = $(this).attr('data-type'); var arrayData = $(this).attr('data-value'); var arrayDataID = $(this).attr('data-id'); if(dataType!='sorting') { var collectionListJSON = JSON.parse(arrayDataID); var dataType = $(this).attr('data-type'); arrayfilter[dataType] = (collectionListJSON); } else { arrayfilter[dataType] = (arrayData); } }) var data={ action:"loadmore", alldata:arrayfilter, postType:postType, offset:offset, sliderPosts:sliderPosts, postPerPage:postPerPage, paged:paged }; // console.log(data); $.ajax({ type: "POST", url: persistent_object.ajax_url, data: data, beforeSend: function( xhr ) { $('.custom-loader').removeClass('d-none').addClass('d-inline-block'); }, success: function (response) { //console.log(postType); if(postType=='client-success') { $(response.html).insertBefore('.loadmore'); } else { $('.loadmore').parents('section').find('.loaddata').append(response.html); } if(postType=='cloud-case-studies') { $(response.html).insertBefore('.loadmore'); } if(postType=='client-stories') { $(response.html).insertBefore('.loadmore'); } $(document).scrollTop(curOffset); // $('body, html').animate({ scrollTop: $(response.html).offset().top }, 1000); $('.custom-loader').removeClass('d-inline-block').addClass('d-none'); if(!response.loadmore) { $('.loadmore').addClass('d-none'); } } }); $('.filterform-js').attr('data-paged', parseInt(paged)+1); $('.filterform-js').attr('data-offset',parseInt(offset)+parseInt(postPerPage)); } function unique(array) { return $.grep(array, function(el, index) { return index === $.inArray(el, array); }); } function addFilteredData(termType, termValue, termId) { var termDiv = $('*[data-type="'+termType+'"]'); if(termType!='sorting') { var savedValue =''; var collectionListJSON =''; var savedId =''; var collectionListJSONID =''; if(termValue=='All') { termDiv.attr('data-value','[]'); termDiv.attr('data-id','[]'); savedValue = termDiv.attr('data-value'); collectionListJSON = JSON.parse(savedValue); savedId = termDiv.attr('data-id'); collectionListJSONID = JSON.parse(savedId); } else { savedValue = termDiv.attr('data-value'); collectionListJSON = JSON.parse(savedValue); collectionListJSON = collectionListJSON.filter(function(value, index, arr) { return value != 'All'; }); savedId = termDiv.attr('data-id'); collectionListJSONID = JSON.parse(savedId); collectionListJSONID = collectionListJSONID.filter(function(value, index, arr) { return value != 'All'; }); } collectionListJSON.push(termValue); //create unique list for value collectionListJSON = unique(collectionListJSON); var collectionListString = JSON.stringify(collectionListJSON); termDiv.attr('data-value', collectionListString); collectionListJSONID.push(termId); //create unique list for value id collectionListJSONID = unique(collectionListJSONID); var collectionListStringID = JSON.stringify(collectionListJSONID); termDiv.attr('data-id', collectionListStringID); var totalSearched =[]; var newHtml = ''; $.each($('.send-data'),function(){ var typed = $(this).attr('data-type'); if(typed!='sorting') { var collectionListJSON = $(this).attr('data-value'); var collectionListJSONID = $(this).attr('data-id'); collectionListJSONID = JSON.parse(collectionListJSONID); collectionListJSON = JSON.parse(collectionListJSON); collectionListJSON.forEach(function(value , index) { if(value!=='All') newHtml += ''+value+' '; }); totalSearched.push(collectionListJSON); } }) // console.log(totalSearched); // console.log(newHtml); if(totalSearched.length>0) { if(newHtml!='') $('#searched-items').removeClass('d-none'); else $('#searched-items').addClass('d-none'); } } else { termDiv.attr('data-value',termId); termDiv.attr('data-id',termValue); } $('#searched-items .clear-buttons').html(newHtml); } function removeFilterSearchedItem(termValue, termId) { var totalSearched=[]; var clearText = false; $.each($('.send-data:not(.no-clear)'),function(){ var typed = $(this).attr('data-type'); if(typed!='sorting') { var collectionListJSON = $(this).attr('data-value'); collectionListJSON = JSON.parse(collectionListJSON); var filtered = collectionListJSON.filter(function(value, index, arr) { return value != termValue; }); var collectionListString = JSON.stringify(filtered); $(this).attr('data-value', collectionListString); $('#taxo-'+typed).attr('data-value', collectionListString); var collectionListJSONID = $(this).attr('data-id'); collectionListJSONID = JSON.parse(collectionListJSONID); var filteredID = collectionListJSONID.filter(function(value, index, arr) { return value != termId; }); var collectionListStringID = JSON.stringify(filteredID); $(this).attr('data-id', collectionListStringID); $('#taxo-'+typed).attr('data-id', collectionListStringID); if(filteredID.length>0 && !clearText) { clearText = true; } if(filteredID.length<1) { //if collection data is null lets reset select option $('#taxo-'+typed).prop('selectedIndex', 0); } } // totalSearched.push(filtered); }) if(!clearText) { $('.custom-select').prop('selectedIndex', 0); $('#searched-items').addClass('d-none'); } } $('body').on('change','.filterform-js select',function() { var termId = $(this).val(); var termValue = $(this).children("option:selected").text(); var termType = $(this).attr('data-type'); var postsPerPage = $('.filterform-js').attr('data-postperpage'); $('.filterform-js').attr('data-offset',postsPerPage); $('.filterform-js').attr('data-paged',2); addFilteredData(termType, termValue, termId); filterSearch(); }) $('body').on('click','#searched-items a .icon-close',function(){ var termId = $(this).parents('a').attr('data-id'); var termValue = $(this).parents('a').attr('data-value'); removeFilterSearchedItem(termValue,termId); filterSearch(); $(this).parent('a').remove(); }) $('body').on('click','#search-clear',function() { $('.custom-select').prop('selectedIndex', 0); $.each($('.send-data:not(.no-clear)'),function(){ $(this).attr('data-value','[]'); $(this).attr('data-id','[]'); }) $('#searched-items').attr('data-list','{}'); $('#searched-items').addClass('d-none'); filterSearch(); }) $('body').on('click','.search-close .icon-close',function(){ $('#searchedBy').val(''); }) $('body').on('click','.loadmore a',function() { loadmore(); }) /* *Search Result */ $('body').on('click','.search-result-js button',function(e){ e.preventDefault(); $('.custom-loader').removeClass('d-md-none').addClass('d-inline-block'); filterSearch(1); }) $('body').on('click','.search-pagination a',function() { filterSearch($(this).attr('data-page')); }) /* * Force trigger change */ // $('#taxo-service').trigger('change'); $(document).ready(function(){ if($('.filterPlay').length>0){ filterSearch(); } }) })(jQuery); ';return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.dataset.query.length?'':'&'+this.dataset.query;e.setAttribute("src",t.replace("ID",this.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow", "accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.replaceChild(e,this)}document.addEventListener("DOMContentLoaded",function(){var e,t,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t