function toggle(){
$(\"#tempc\").toggle(
function () {
$(\"#tempc\").animate({width: 255, height: 220}, 1000);
$(\"#tempc\").html
With JQuery, you don't need to use iframes. Take a look at the .load() function. http://api.jquery.com/load
i.e.
$('#tempc').load('src/stream.php?stream=1');
To preload a page, just create a hidden div and show it when ready.
var stream2 = $('').load('src/stream.php?stream=2').hide();
$('#tempc').html(stream2.html());