I am using the cluetip plugin to display a preview of a user most recent messages.

I have the plugin set up to append a table into the cluetip and then the table is populated with JSON data, displaying the users most recent messages.

This all works wonderfully, however every time the cluetip is opened the data is re-requested from the server.

I would like this to happen conditionally. i.e. if the element #navicon has class of 'loaded' it simply loads a cached version of the content, rather than erasing the current content and reloading it.

My thoughts were to store the contents of the cluetip using $('#message_holder').html(); and then check for the class loaded on #navicon, and if it has it, use that as the content. If not, append the table and load the JSON contents automatically.

I have tried several ways of declaring the content variable conditionally but nothing seems to work right and it feel as though I am on the wrong tracks.

Is there an easier way of achieving this simple form of caching in order to save server hits?

To summarise, I simply want the content variable to be either the table (as shown below) or the already stored content of #message_holder depending on whether #navicon has the class 'loaded' or not.

        $(document).ready(function () {

//Declare variables

            var $navicon = $('#navicon');
            var $countspan = $('.countspan');
            var $messagecount = $('#message_count');
            var $domainLink = $("#loggedin_user_domain").text();


            content = '<div id="message-title" class="ajax"><h6 class="nomargin"><a rel="messages" id="compose_link" href="' + $domainLink + 'messages/compose/">Send a new message</a></h6><div><h6 class="nomargin">Messages</h6></div></div>'

        + '<div id="message_holder">'       

            + '<table cellpadding="0" cellspacing="0" border="0"  id="messages_table">'
                + '<thead class="hidden_column">'
                    + '<tr>' 
                        + '<th width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                    + '</tr>' 
                + '</thead>' 

                + '<tfoot class="hidden_column">'
                    + '<tr>' 
                        + '<th width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                        + '<th class="hidden_column" width="100"></th>' 
                    + '</tr>' 
                + '</tfoot>'
                + '<tbody class="messages_table"></tbody>' 
            + '</table>' 
        + '</div>'

        + '<div id="message-bottom" class="ajax"><a rel="messages" class="all-messages" href="' + $domainLink + 'messages/">See all messages</a></div>';


//Detect browsers and assign offsets

            if ($.browser.mozilla) {
                var $top = 46
                var $left = -43             
            } else if ($.browser.webkit) {
                var $top = 46
                var $left = -8
            } else if ($.browser.opera) {
                var $top = 46
                var $left = -64
            } else if ($.browser.msie) {
                var $top = 59
                var $left = -43
            }

//Initialise Cluetip

            $('#messagelink').cluetip(function () {

                return content;
            },

            {

                activation: 'click',
                sticky: true,
                width: '350px',
                ajaxCache: true,
                cursor: 'pointer',
                positionBy: 'fixed',
                waitImage:   false,
                topOffset: $top,
                leftOffset: $left,
                closeText: '',
                onActivate: function (e) {
                    $('div.tag-selected').removeClass('tag-selected');

                },
                onShow: function (ct, c) {

                if ($("#navicon").hasClass('loaded')){

                    }
                    else {
                    loadTable();
                    $("#navicon").addClass('loaded');

                    }

                    $navicon.addClass('nav_light');
                    $countspan.css('display', 'none');
                    $messagecount.css({
                        'border-top': '0',
                        'box-shadow': 'none'
                    });
                },

            onHide: function (ct, ci) {
                    $navicon.removeClass('nav_light');
                    $countspan.css('display', 'block');
                    $messagecount.css({
                        'border-top': 'thin solid #858585',
                        'box-shadow': '0 0 10px #1A1A1A'
                    });
                }
            });


//Close Cluetips and return original classes when user clicks anywhere in document

            $(document).click(function (e) {

                $(document).trigger('hideCluetip');
                if ($navicon.hasClass('nav_light')) {
                    $navicon.removeClass('nav_light');
                    $countspan.css('display', 'block');
                    $messagecount.css({
                        'border-top': 'thin solid #858585',
                        'box-shadow': '0 0 10px #1A1A1A'
                    });
                }

            }); // Close document click function
        }); // Close Document ready
link|improve this question

80% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.