I know there are some tools and techniques for delaying the load of javascript, but I have an iframe that I would like to delay loading until after the rest of the page has fini
with jquery it is easy!
either enclose your code which loads the iframe within a $()
or use $(document).ready(function(){})
these both are the same and would execute your code after the DOM is ready!
e.g.
$(document).ready(function(){
$('iframe#iframe_id').attr('src', 'iframe_url');
});
see more at http://www.learningjquery.com/2006/09/introducing-document-ready