How to embed GoogleWave on blog(blogger)
Posted On Saturday, August 1, 2009 at at 2:42 PM by test
Steps to Embed GoogleWave on Blogger
1: Signup for Google wave account .
2: Create your own Wave
3: Grab Wave ID
<script src="http://wave-api.appspot.com/public/embed.js" type="text/javascript"></script>
<script type="text/javascript">
function initialize() {
var wavePanel = new WavePanel("http://wave.google.com/a/wavesandbox.com/");
wavePanel.loadWave("wavesandbox.com!w+WAVEID</span>");
wavePanel.init(document.getElementById("waveframe"));
}
</script>
4 Replace WaveID in above java script with your own waveid.
5 Find <body> .tag in blog template and replace it with <body onload="initialize()">
Note: This will add googlewave to all your blogs on blogger.
6 Add a new Page Element in your blog (HMTL/Javascript type) and paste this code
<div id="waveframe" style="width: 500px; height: 100%"></div>
set size .
7: Thats all .