Connecting Tech Pros Worldwide Help | Site Map

Variable scope - 2

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 20th, 2005, 11:18 AM
John Wood
Guest
 
Posts: n/a
Default Variable scope - 2

Can anybody explain why my variable imonline is still 1 even though my
onError function has fired , value = 0 when printed by Javascript
document.write at end. I thought that
VAR imonline = 1
should have given me a global variable
TIA


<HTML>

<SCRIPT LANGUAGE="JavaScript">
var imonline = 1;
function imageError(theImage) {imonline=0; document.JWonline.src =
"2_yellow.jpg";}
</script>
</HEAD>

<BODY BGCOLOR="#b5ccb8">
<H2><CENTER>Is the green button loaded 2</CENTER></H2>
<!-- 2_greenx.jpg does not exist for this test -->
<img name="JWonline" src="2_greenx.jpg" align=left border=0
onError="imageError(this)"
onAbort="imageError(this)">

<p>Yellow button indicates offline<br>
Green button indicates online

<!-- since yellow button is on, so imonline should be 0 -->
<SCRIPT LANGUAGE="JavaScript">
document.write("<BR>online=",imonline);
</script>

</BODY>
</HTML>

John Wood

  #2  
Old July 20th, 2005, 11:18 AM
Lasse Reichstein Nielsen
Guest
 
Posts: n/a
Default Re: Variable scope - 2

John Wood <john@lortim.demon.co.uk> writes:
[color=blue]
> Can anybody explain why my variable imonline is still 1 even though my
> onError function has fired[/color]

No it hasn't. When your document.write is executed, the image is still
being loaded (or waiting to fail loading). It will probably not finish
loading/failing the image before the page has been fully processed.

/L
--
Lasse Reichstein Nielsen - lrn@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.