 /*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
Description: jQuery  googlebox on-site search results for web trends. used to retrieve result generated by and xslt control in a aspx page to be assigned 
             a webtrend meta tag(wt.oss_r)
author: Longchi Kanouo
email: longchkanouo@redweb.com
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/

 

        if ($('#results_found_wt').length) { // targets html generated by the xslt which presents the googlebox search results
        $("meta[name='WT.oss_r'][content]").attr("content","1");         
        } 
        else 
        {
        $("meta[name='WT.oss_r'][content]").attr("content","0");
        }
   






