Search the web
Sign In
New User? Sign Up
JS-Jive · The premiere Yahoo! Javascript Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 14737 - 14766 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14737
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@...
Send Email
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...
Don Arnett
darnit78
Offline Send Email
Jul 1, 2002
2:26 pm
14739
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@...
Send Email
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@...
Send Email
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@...
Send Email
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...
AIhacker
Offline Send Email
Jul 1, 2002
10:42 pm
14743
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 ... (); ... ...
AIhacker
Offline Send Email
Jul 2, 2002
2:22 am
14744
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@...
Send Email
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...
Joshua Abbott
jabbott_whct...
Offline Send Email
Jul 2, 2002
11:18 am
14746
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...
Stephen Smith
stephen_russ...
Offline Send Email
Jul 2, 2002
12:14 pm
14747
Hello all, I hope you can help with this... I have a set of options <select> <option> blah </option> </select> etc. I also have a popup window that...
matthew.johnson@...
mat311275
Offline Send Email
Jul 2, 2002
12:34 pm
14748
How do you reset a form via java script? Stephen Smith Stephen_Smith@... Laerkevej 21 9330 Dronninglund Denmark...
Stephen Smith
stephen_russ...
Offline Send Email
Jul 2, 2002
1:56 pm
14749
document.formname.reset();...
Matt Horn
horn_matt
Offline Send Email
Jul 2, 2002
1:59 pm
14750
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...
Stephen Smith
stephen_russ...
Offline Send Email
Jul 2, 2002
2:20 pm
14751
opener.document.formname.reset();...
Matt Horn
horn_matt
Offline Send Email
Jul 2, 2002
2:23 pm
14752
window.opener.document.formname.reset() Russ Michaels -- Satachi Internet Development Tel: 0870 787 3610 Fax: 07092 212636 Support: 07092 300330 ...
Russ 'Snake' Michaels
snake@...
Send Email
Jul 2, 2002
2:23 pm
14753
Thanks guys!! ... From: "Russ 'Snake' Michaels" <snake@...> To: <JS-Jive@yahoogroups.com> Sent: Tuesday, July 02, 2002 4:23 PM Subject: RE: Reset a...
Stephen Smith
stephen_russ...
Offline Send Email
Jul 2, 2002
2:31 pm
14754
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...
I-Lin Kuo
ikuoikuo
Offline Send Email
Jul 2, 2002
5:50 pm
14755
... If you nest your checkboxes in a form instead of a div, you can use: formname.chkbx_1.checked and formname.chkbx_2.checked /Paulo Guedes...
Paulo Guedes
pauloandregu...
Offline Send Email
Jul 2, 2002
7:13 pm
14756
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++)...
Kayode Yusuf
ko_yusuf
Offline Send Email
Jul 2, 2002
7:28 pm
14757
Hello all, I'm trying to format an input an having no success. Here's the code (below I'll tell what happens): <mycode> <script> function...
Paulo Guedes
pauloandregu...
Offline Send Email
Jul 2, 2002
8:47 pm
14758
Has anyone had any experience with a system where new text fields are added upon the click of a button like in ...
sundevil67
Online Now Send Email
Jul 2, 2002
11:24 pm
14759
Try window.opener.document.forms[0].jobagencycontacts.options.length = 0;...
Roger Roelofs
rogerroelofs
Offline Send Email
Jul 2, 2002
11:59 pm
14760
... IE5Mac has grave trouble with (re)populating select boxes through innerHTML or create/appendElement. Instead, use a traditional function described on ...
Peter-Paul Koch
gassinaumasis
Offline Send Email
Jul 3, 2002
8:28 am
14761
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...
johnny.miller@...
jpm_rc
Offline Send Email
Jul 3, 2002
10:28 am
14762
Thanks Kayode, You put me on the right track. The following modification worked: <SCRIPT LANGUAGE="JavaScript"> <!-- function fnc_check() { for ( i=0 ; i < ...
I-Lin Kuo
ikuoikuo
Offline Send Email
Jul 3, 2002
12:05 pm
14763
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...
I-Lin Kuo
ikuoikuo
Offline Send Email
Jul 3, 2002
12:11 pm
14764
... <script> setTimeout('self.close()',10000) </script> closes the popup after 10 seconds. ppk ...
Peter-Paul Koch
gassinaumasis
Offline Send Email
Jul 3, 2002
1:24 pm
14765
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...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jul 3, 2002
1:59 pm
14766
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...
drenzii
Offline Send Email
Jul 3, 2002
7:27 pm
Messages 14737 - 14766 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help