<!-- / starthtml -->
LANGUAGE="JavaScript">
IE4plus = (document.all) ? true : false;
NS4 = (document.layers) ? true : false;
function clickIE()
{
return false;
}
function clickNS(e)
{
if (e.which==2 || e.which==3)
{
return false;
}
}
if (!IE4plus)
{
document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP)
document.onmousedown=clickNS;
document.onmouseup= clickNS;
document.oncontextmenu=clickIE; // For NS 6+
}
else
{
document.onmouseup= clickIE;
document.oncontextmenu=clickIE;
}
<!-- The block of META tags is required by Homepage Studio -->
<!-- to identify this file as created by Freeform Editor. -->
<!-- Please do not remove them, but feel free to append -->
<!-- them with your personal data below. Meta tags help -->
<!-- search engines identify the content of your page. -->
Bio
Blog frame
<!-- / end html -->
LANGUAGE="JavaScript">
IE4plus = (document.all) ? true : false;
NS4 = (document.layers) ? true : false;
function clickIE()
{
return false;
}
function clickNS(e)
{
if (e.which==2 || e.which==3)
{
return false;
}
}
if (!IE4plus)
{
document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP)
document.onmousedown=clickNS;
document.onmouseup= clickNS;
document.oncontextmenu=clickIE; // For NS 6+
}
else
{
document.onmouseup= clickIE;
document.oncontextmenu=clickIE;
}
<!-- The block of META tags is required by Homepage Studio -->
<!-- to identify this file as created by Freeform Editor. -->
<!-- Please do not remove them, but feel free to append -->
<!-- them with your personal data below. Meta tags help -->
<!-- search engines identify the content of your page. -->
Blog frame
<!-- / end html -->
Now, here's the clincher. I don't want to have the border between the frames that you'll see when you copy/paste it, and to be honest I've forgotten what to input to remove the frame and the websites I've referred to don't answer how to remove it any better, so I'm seeking two questions to be answered.
1. What is the coding to use to remove that frame bar?
2. Is there a CSS coding alternative to standard html frames I should look into?
