Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback: irt.org FAQ Knowledge Base Q1272

Feedback on: irt.org FAQ Knowledge Base Q1272

Sent by p. gobee on April 18, 2000 at 10:48:19: - feedback #1107

Worth:
Not worth reading

Comments:
I don't understand the explanation. The examples only show functionA but the explaining text speaks of a functionB. Now where is functionB in the code??


Sent by Yakov on May 03, 2000 at 18:46:43: - feedback #1178

Length:
Too short

Technical:
Not technical enough

Comments:
Text and JS samples do not match.
Text refers to 'funtionB(parms)'



Sent by John Napoleone on May 11, 2001 at 15:18:15: - feedback #2721

Worth:
Not worth reading

Comments:
This was the most confusing, useless bit of information that I have ever read about JavaScript. There may be more out there but this is the first that I have read.


Sent by George on Wednesday April 25, 2007 at 03:47:10 - feedback #4483

Worth:
Worth reading

Length:

Technical:
Not technical enough

Comments:
To pass parameters and keep things in scope you need to use an anonymous function eg:

var myParam = 'hello';
setTimeout(function(){ myfunction(myParam) }, 100);




Sent by Jon Hurlock on Monday July 30, 2007 at 07:53:16 - feedback #4856

Worth:
Very worth reading

Length:
Just right

Technical:
Just right

Comments:
You have to concatinate the string as seen below.

<!-- Gallery -->
<script>
function LoadGallery(placeHolder,imageFile)
{
new Effect.SlideUp('photoboxgallery');
var t1=setTimeout("document.getElementById('"+placeHolder+"').src ='"+imageFile+"';", 1000)
new Effect.SlideDown('photoboxgallery', { queue: 'end'});
}
</script>




Sent by DYMongoose on Friday May 23, 2008 at 13:52:54 - feedback #5274

Worth:
Very worth reading

Length:
Just right

Technical:
Just right

Comments:
Exactly what I needed to know. Thanks!




©2018 Martin Webb