•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 374,019 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,757 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
Views: 2011 | Replies: 2
![]() |
•
•
Join Date: Feb 2005
Location: Corpus Christi, TX
Posts: 9
Reputation:
Rep Power: 0
Solved Threads: 0
A former instructor (process technology) has emailed me with a question concerning a runtime error he is receiving. I am not a programmer and provided him with code snippets for his WebCT environment.
He has emailed me and asked a question I cannot answer. He is receiving a runtime error for the following snippet that a ";" is missing. Can someone tell me where that semi-colon is supposed to go?
Thanks, Steve
snewsome@stx.rr.com
<HEAD>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
</HEAD>
<STYLE media="print">BODY {display:none}</STYLE>
<BODY ondragstart="return false" onselectstart="return false">
<script language="JavaScript">
var message="Function Disabled!";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) { if
(e.which==1||e.which==2||e.which==3) {(message);return false;}}} if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false") if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
<!-- ///////////////////////////////////////// //-->
<html><head>
<script language="JavaScript"><!--
function clp_clear() {
var content=window.clipboardData.getData("Text");
if (content==null) {
window.clipboardData.clearData();}
setTimeout("clp_clear();",1000);}
--></script></head>
<body onload='clp_clear()'>
</body></html>
He has emailed me and asked a question I cannot answer. He is receiving a runtime error for the following snippet that a ";" is missing. Can someone tell me where that semi-colon is supposed to go?
Thanks, Steve
snewsome@stx.rr.com
<HEAD>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
</HEAD>
<STYLE media="print">BODY {display:none}</STYLE>
<BODY ondragstart="return false" onselectstart="return false">
<script language="JavaScript">
var message="Function Disabled!";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) { if
(e.which==1||e.which==2||e.which==3) {(message);return false;}}} if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false") if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
<!-- ///////////////////////////////////////// //-->
<html><head>
<script language="JavaScript"><!--
function clp_clear() {
var content=window.clipboardData.getData("Text");
if (content==null) {
window.clipboardData.clearData();}
setTimeout("clp_clear();",1000);}
--></script></head>
<body onload='clp_clear()'>
</body></html>
•
•
Join Date: Jun 2005
Location: Kansas City, Missouri, USA
Posts: 344
Reputation:
Rep Power: 4
Solved Threads: 4
I fixed all the obvious problems I found (there were several).
var message="Function Disabled!";
function clickIE()
{
if (document.all) {
alert(message);
return false;
}
}
function clickNS(e)
{
if (document.layers||(document.getElementById&&!document.all)) {
if (e.which==1||e.which==2||e.which==3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS;
} else {
document.onmouseup=clickNS;
document.oncontextmenu=clickIE;
}
document.oncontextmenu=new Function("return false;");
function disableselect(e)
{
return false;
}
function reEnable()
{
return true;
}
document.onselectstart=new Function ("return false;");
if (window.sidebar){
document.onmousedown=disableselect;
document.onclick=reEnable;
}
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb JavaScript / DHTML / AJAX Marketplace
- Runtime Error -21470024770 (8007007e) (Windows NT / 2000 / XP / 2003)
- Runtime Error 226 (Windows 9x / Me)
- runtime error#58 (Visual Basic 4 / 5 / 6)
- "The Sims" visual C++ runtime error, what shall i do? (Windows Software)
- Visual Runtime Error, Sound Problem, Disabled Norton and more! (Windows NT / 2000 / XP / 2003)
- Runtime Error 424 object required (was: Please Help!) (Visual Basic 4 / 5 / 6)
- Runtime error using Incredimail on XP (Windows NT / 2000 / XP / 2003)
- Runtime error ??!! (Windows 9x / Me)
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: Please help!! i am so desperate!
- Next Thread: Creative element selection with JavaScript


Linear Mode