|
solutions - xoom summary:
URL: xoom.com/home/
Space: Unlimited
What the Solution does: Breaks out of the ad frame
Description: You pay twice with XOOM. Firstly, they send you
junk in your e-mail (so start a new account just for XOOM mail), and
they recently started adding the XoomBar, to scare your visitors away! solution:
there's two ways to do this: 1)
link to your index.html like this:
http://members.xoom.com/_XMCM/YourMemberName/index.html
instead of
http://members.xoom.com/YourMemberName/index.html
or, you can have a gateway / welcome page, welcoming people to your
site, telling them what's new, etc. 2)
Throw this JavaScript anywhere into your site to kill the
XoomBar.
<SCRIPT LANGUAGE="Javascript">
<!---
if (parent.frames.length)
parent.location.href= self.location;
// --->
</SCRIPT>
|