function paymentPage() { $('tr[class*="PaymentPartGrid"] > td:first-child').each(function(){ $(this).text( $(this).text().replace('Donation',"Gift")); }); $('div[id*="upCartItems"] .PaymentPartLastAction').each(function(){ $(this).text( $(this).text().replace('Donation',"Gift")); }); } function designationLabel() { if ($('select[id*="ddlDesignations"]').length < 1) { $('tr[id*="trDesignation"]').addClass('designationResult'); } } var bbpage = Sys.WebForms.PageRequestManager.getInstance(); bbpage.add_pageLoaded(function(){ if ($('.PaymentPartGrid').length > 0) { paymentPage(); } if ($('.DonationFormTable').length > 0) { designationLabel(); } });