Cookie based recently viewed pages script

Discussion in 'JavaScript' started by qwikad.com, Jul 21, 2014.

  1. #1
    How can I make this script to show the title of an ad instead of showing the title of a page? Right now it simply grabs whatever is between <title></title>.

    An ad's title is echoed like this <?php echo $adtitle; ?>. Obviously it's in php, but I am wondering if you, guys, somehow can integrate it into the script so that it would show an ad's title instead of the stuff between <title></title>.

    <script type="text/javascript"><!--
    // Obtained from http://www.willmaster.com/
    //
    // Specify maximum number of history links to keep,
    //    minimum 1.
    var MaximumNumberOfLinks = 15;
    
    // Specify cookie name.
    var CookieName = "HistoryLinks";
    
    // Specify number of days cookie is to remain on visitor's
    //    computer. (Use 0 to delete cookie when browser closed.)
    var DaysToLive = 366;
    
    // No other customizations required.
    var HistoryLink = new Array();
    var HistoryTitle = new Array();
    var CurrentPage = new String();
    var HistoryContent = new String();
    DaysToLive = parseInt(DaysToLive);
    MaximumNumberOfLinks = parseInt(MaximumNumberOfLinks);
    if( MaximumNumberOfLinks < 1 ) { MaximumNumberOfLinks = 10; }
    
    function GetCookie() {
    var cookiecontent = '';
    if(document.cookie.length > 0) {
       var cookiename = CookieName + '=';
       var cookiebegin = document.cookie.indexOf(cookiename);
       if(cookiebegin > -1) {
          cookiebegin += cookiename.length;
          var cookieend = document.cookie.indexOf(";",cookiebegin);
          if(cookieend < cookiebegin) { cookieend = document.cookie.length; }
          cookiecontent = document.cookie.substr(cookiebegin,cookieend);
          }
       }
    if( cookiecontent.length < 3 ) { return; }
    cookiecontent = unescape(cookiecontent);
    var historyList = cookiecontent.split('&');
    for( var i = 0; i < historyList.length; i++ ) {
       var link = historyList[i].split('=',2);
       HistoryLink.push(link[0]);
       HistoryTitle.push(link[1]);
       var temparray = link[0].split('~amp;');
       link[0] = temparray.join('&');
       temparray = link[1].split('~amp;');
       link[1] = temparray.join('&');
       HistoryContent += '<'+'p>'+'<'+'a href="'+link[0]+'">'+link[1]+'<'+'/'+'a>'+'<'+'/'+'p>';
       }
    }
    
    function PutCookie() {
    if( HistoryLink.length < 1 ) { return; }
    var len = HistoryLink.length;
    while( HistoryLink.length > MaximumNumberOfLinks ) {
       HistoryTitle.shift();
       HistoryLink.shift();
       }
    var pairs = new Array();
    for( var i = 0; i < HistoryLink.length; i++ ) { pairs.push(HistoryLink[i]+'='+HistoryTitle[i]); }
    var value = pairs.join('&');
    var exp = new String();
    if(DaysToLive > 0) {
       var now = new Date();
       now.setTime( now.getTime() + (DaysToLive * 24 * 60 * 60 * 1000) );
       exp = '; expires=' + now.toGMTString();
       }
    document.cookie = CookieName + "=" + escape(value) + '; path=/' + exp;
    }
    
    function RecordCurrentPage() {
    var link = document.URL;
    var title = document.title.length > 1 ? document.title : 'Untitled';
    CurrentPage = '<'+'p>'+title+'<'+'/'+'p>';
    var temparray = link.split('&');
    link = temparray.join('~amp;');
    var temparray = title.split('&');
    title = temparray.join('~amp;');
    HistoryLink.push(link);
    HistoryTitle.push(title);
    }
    
    GetCookie();
    RecordCurrentPage();
    PutCookie();
    //--></script>
    
    Code (markup):
    <script type="text/javascript"><!--
    if(HistoryContent.length) {
    
    document.write('<'+'div ');
    document.write(' id="visitorhistory" ');
    document.write(' style="border-style:solid; border-width:1px; padding:0 5px 10px 20px;">');
    
    document.write('<'+'h3>You were here:<'+'/h3>');
    
    document.write(HistoryContent);
    
    document.write('<'+'h3>You are here:<'+'/h3>');
    
    document.write(CurrentPage);
    
    document.write('<'+'/div>');
    
    }
    //--></script>
    Code (markup):
     
    Last edited: Jul 21, 2014
    qwikad.com, Jul 21, 2014 IP
  2. qwikad.com

    qwikad.com Illustrious Member Affiliate Manager

    Messages:
    7,293
    Likes Received:
    1,698
    Best Answers:
    31
    Trophy Points:
    475
    #2
    By the way I am mostly talking about the HistoryTitle. I want this to grab and remember the recently visited ads' titles. That link[1] is what the title is between <title></title>. I want it to display $adtitle instead.


    if( cookiecontent.length < 3 ) { return; }
    cookiecontent = unescape(cookiecontent);
    var historyList = cookiecontent.split('&');
    for( var i = 0; i < historyList.length; i++ ) {
    var link = historyList[i].split('=',2);
    HistoryLink.push(link[0]);
    HistoryTitle.push(link[1]);
    var temparray = link[0].split('~amp;');
    link[0] = temparray.join('&');
    temparray = link[1].split('~amp;');
    link[1] = temparray.join('&');
    HistoryContent += '<'+'p>'+'<'+'a href="'+link[0]+'">'+link[1]+'<'+'/'+'a>'+'<'+'/'+'p>';
    }
    }
    Code (markup):
     
    qwikad.com, Jul 21, 2014 IP
  3. HuggyStudios

    HuggyStudios Well-Known Member

    Messages:
    724
    Likes Received:
    20
    Best Answers:
    26
    Trophy Points:
    165
    #3
    Can you show what the ad's html code is?
     
    HuggyStudios, Jul 25, 2014 IP