Friends, My issue is that my page is really slow to load, because all of the load simeltaneously. I am pulling an RSS feed that if you click on the \"article\" button it w
First, you don't have an element $('#gogogo'). The frame is #gogo.
$('#gogogo')
#gogo
Second, set it's src not href
src
href
$("#myframe").attr('src', 'http://site.com');
If you just want to set it to some HTML and not a URL, use this:
$("#myframe").contents().find('html').html("hello");
Here's a demo