cheers, I used a dhtml solution that didn't use an iframe... but had the
same output that I wanted:)
----- Original Message -----
From: "Sensei"...
Tom Smith
tomo_smith@...
Jul 1, 2002 8:39 am
14738
Once the syntax is corrected, sure, no problem mate! for (k=1; k<=10; k++){ alert("k="+k); for (i=k; i >= 0; i--){ alert("i="+i); } } Your biggest problem was...
Thanks amillion, Ive been bashing my head bloody against it. The middle part" ;i >= 0; " was the bit that really had me. Andries ... From: Don Arnett...
Andries Loubser
andriesl@...
Jul 1, 2002 3:05 pm
14740
... Jon, Sorry, but our code is in the testing stages still and not really in sharable state. Regarding keeping the screen up-to-date, we just reload the...
Ron Hornbaker
ron@...
Jul 1, 2002 5:34 pm
14741
Ahh, so you are rewriting the entire conversation at each cycle? That certainly would solve the problem. Doesn't that cause memory problems in IE if there is a...
Jon Hall
jonhall@...
Jul 1, 2002 9:49 pm
14742
Here is an example of how I post user input to a popup. <HTML> <HEAD> <TITLE>Testing</TITLE> <SCRIPT language=JavaScript> var openup = "false"; function...
Here is a script that is similar to what you are trying to do. http://www.geocities.com/ResearchTriangle/8870/sounds/js-juke.html ... from ... the ... (); ... ...
this is exactly what i have been writing as well, a chat interface messenger. It all works groovy so far. How do u get the message DIV to scroll to the bottom...
Russ 'Snake' Michaels
snake@...
Jul 2, 2002 10:12 am
14745
Greetings: My name is Joshua Abbott. I am project administrator of an open source project that is in dire need of PHP Developers. The project is called...
Hey How would you refresh a form on the parent window from a pop-up? eg click submit, thank you message in a new window pops up and then it resets the form and...
ok what if I wanted to reset the form from a new window opened from the page with the form on it. eg clicking submit on the form opens a new window, which says...
In IE, I've got a div with checkboxes like so: <div id="Controls"> <input type="checkbox" name="chkbx_1"> <input type="checkbox" name="chkbx_2"> </div> that I...
Try this TO SEE IF IT HELPS: <BODY> <SCRIPT LANGUAGE="JavaScript"> <!-- function fnc_check() { for ( i=0 ; i < document.all.item('Controls').all.length ; i++)...
... IE5Mac has grave trouble with (re)populating select boxes through innerHTML or create/appendElement. Instead, use a traditional function described on ...
Hi I need help! I have a pop-up window which I need to close after a certain amount of inactivity i.e.. the user opens the pop-up window, then goes off and...
Thanks Kayode, You put me on the right track. The following modification worked: <SCRIPT LANGUAGE="JavaScript"> <!-- function fnc_check() { for ( i=0 ; i < ...
Thanks Paul. Yes, I was playing around with contentEditable for the first time and all the examples set the attribute within a <div>, so I didn't even consider...
IMO, your much better off not adding dynamic fields, but instead using a set of fields to add data to a data structure that you pass pack to the server. For...
Hello, I'm writing a code in JavaScript to open a new web page and write data on it ; the code is : <html> <head> <script language="JavaScript"> function...