Google Gadget

Using Google? Simply click the following link: Add to Google

Set preferences to connect to any WoW Site and Map Path as you wish.

The TraverseWoW gadget works with Google Page Creator too, you can simply embed live Mind Maps from WoW into any page you created there.

Here is the gadget URL if you can't find it by search: http://www.webofweb.net/gadgets/TraverseWoW.xml

 

Using IFrame

If you know how to put raw HTML content into your pages, using an IFrame is the easy way to embed WoW maps. Put

    <iframe width="500" height="400"
        src="http://www.webofweb.net/traverse/Sharing" />
                        
into your pages.

Change the width, height and URL as you wish.

 

Applet Tag

If you'd like some tricky things, put

    <applet width="500" height="400" 
         codebase="http://www.webofweb.net/run" 
         code="av.wow.traverser.http.WebTraverserApplet.class" 
         archive="wowtraverser.jar" name="wowtraverser" 
         align="baseline" vspace="0" hspace="0">
        
        <param name="url" value="http://www.webofweb.net/traverse/Sharing" />
        
        <param name="type" value="application/x-java-applet;version=1.5" />
        <param name="scriptable" value="false" />
        <param name="boxmessage" value="Loading WoW Traverser..." />

        <center style="margin: 1cm 1cm 1cm 1cm;">
        You have visited a page that contains an applet written with Java technology.
        Please install the Java Runtime Environment before refreshing this page. <br/>
        <a href="http://java.com/java/download/index.jsp?cid=jdp105810">
        <img width="100" height="43" border="0" style="margin: 8px;"
        alt="GetJava Download Button" title="GetJava"
        src="http://java.com/en/img/everywhere/getjava_med.gif?cid=jdp105810" />
        </a>
        </center>
        
    </applet>
                        
into the html source of your page.

Change the width, height and URL as you wish.