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