I always forget how useful is the “$(<selector>).load(‘url’, {para: meter});” function on jQuery.
It is really a problem solver when loading HTML structures. I am converting some old code where I got HTML fragments to replace some existing content on the page and using the usual process, I’d have to do the AJAX query, call a callback procedure and then there I’d replace the contents of the section / div / whatever I wanted.
With jQuery.load I can do that on a single call and in a more effective way.
Silly thing and so simple that I always keep forgetting about it.