Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to perform a Jquery cache simple system like this:

cacheTags  = {
        cached : {},
        cache  : function(){
            for(selector in cacheTags){
                if (selector != 'cache' && selector != 'cached'){
                    cacheTags.cached[selector] = $(cacheTags[selector]);
                }
            }
        },
        listElement: 'a.tag'
    }

There any way to add an appended element to the cache? I dont want to recache all elements each time I add an dynamic tag.

this.ul.append('<li><a href="#" class="tag">Example</a></li>');

To recache I can do cacheTags.cache(); And now, how can I add only this element to the cache? Any idea?

Thank you

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.