I\'ve build an application which currently uses an Iframe to load external sites.
This method is really slowing my application down - taking up to 5 seconds to load a pa
You should jQuery with the function
$(function(){ $("#NameImage").css('display','none')})
But you should use the function of jQuery v1.7.3
@Simon, if you are loading sites into an iFrame then you are probably doing a thumbnail right? Doing this is going to be slow as each page needs to render in yours so you are contending with the speed of the external site by a factor of n where n is the number of sites on your page.
Please provide more info on what the outcome is that you want so that the greatter community can advise on perhaps different tactics.