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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 21024 - 21053 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
21024
Wow, that was uncalled for. The guy asked what he thought was a JS question. Nice way to make a person feel welcome. David ... -- David Murphy ...
David Murphy
bjorno52
Offline Send Email
Jan 4, 2007
10:25 pm
21025
I know very, very little about JavaScript. It's time for me to learn. First, can anyone recommend a website tutorial for beginners. Second, I want to use...
Robin Boudwin
robin_boudwin
Offline Send Email
Jan 12, 2007
4:51 am
21026
... question. ... David, I wasn't trying to be rude. Point of fact, Dean's is a problem that can be solved more effectively with CSS alone. I understand that...
isaac_schlueter
Offline Send Email
Jan 12, 2007
4:53 am
21027
How do I retrieve the value of an iframe editor called from a cfmodule? I am trying to populate a hidden text field. The left-hand side of the javascript...
Robin Boudwin
robin_boudwin
Offline Send Email
Jan 12, 2007
4:53 am
21028
<select name="myselectbox"> <option value="1">1 </select> parent.document.massE.Content.value=parent.document.massE.myselectbox.options ...
Ernest Breau
cf_ernie
Online Now Send Email
Jan 18, 2007
2:14 pm
21029
Hello All. How do i access a variable thats declared in some other javascript? Suppose i have a javascript-func() which am calling on onload() of a html page...
rockmohit
Offline Send Email
Jan 18, 2007
2:15 pm
21030
correction javascript is case sensitive parent.document.massE.Your_Content.value=parent.document.massE.myselectbox.options ...
Ernest Breau
cf_ernie
Online Now Send Email
Jan 18, 2007
2:20 pm
21031
... All JavaScript in a page will share the same global object, so all global variables and functions are accessible from all scripts in a page. However,...
liorean
Offline Send Email
Jan 18, 2007
2:37 pm
21032
Indeed it is, always has been. _____ From: Ernest Breau [mailto:ernest.breau@...] Sent: 12 January 2007 11:48 To: JS-Jive@yahoogroups.com Subject: Re:...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Jan 18, 2007
2:40 pm
21033
I've been reading about the prototype object, but I don't understand the difference between that that regular way of adding properties/methods. What's the...
upand_at_them
Offline Send Email
Jan 19, 2007
7:20 pm
21034
Mike, ... The "prototype" method make the property available to all "foo" objects--even existing objects, so it's useful if you ever need to add to existing...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jan 19, 2007
9:02 pm
21035
Thanks....
upand_at_them
Offline Send Email
Jan 19, 2007
9:38 pm
21036
... Why not try it? ... Let's do a little test: function foo(){ this.bar=7; } foo.prototype.bar=42; var obj=new foo; alert(obj.bar); // ==> 7 ...
liorean
Offline Send Email
Jan 19, 2007
10:34 pm
21037
Hi, I wonder if there are any similar tools for debugging JavaScript on internet explorer 7 like I got used to on firefox and opera. I have no useful error...
darianlassan
Offline Send Email
Feb 12, 2007
10:44 am
21038
Hi all. Can we measure the size(not screen size i.e not height,width) of a Web page through javascript? If yes, how? Thanks, Mohit...
rockmohit
Offline Send Email
Feb 12, 2007
10:45 am
21039
... There has for a long time existed a totally worthless free debugging tool called the "Microsoft Script Debugger". A much better debugger comes with the...
liorean
Offline Send Email
Feb 13, 2007
10:34 am
21040
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
caitlin_weaver
Offline Send Email
Mar 28, 2007
11:06 pm
21041
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
spot_notrub
Offline Send Email
Mar 28, 2007
11:07 pm
21042
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
caitlin_weaver
Offline Send Email
Mar 28, 2007
11:13 pm
21043
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
spot_notrub
Offline Send Email
Mar 28, 2007
11:14 pm
21044
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
caitlin_weaver
Offline Send Email
Mar 28, 2007
11:19 pm
21045
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
spot_notrub
Offline Send Email
Mar 28, 2007
11:23 pm
21046
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
spot_notrub
Offline Send Email
Mar 28, 2007
11:26 pm
21047
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
caitlin_weaver
Offline Send Email
Mar 28, 2007
11:35 pm
21048
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
caitlin_weaver
Offline Send Email
Mar 28, 2007
11:38 pm
21049
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
spot_notrub
Offline Send Email
Mar 28, 2007
11:46 pm
21050
... Exactly -- you're adding *all the values* regardless of whether the box is "successful", i.e. checked. :-) Untested, but something like var b1 =...
Hassan Schroeder
laughingandj...
Offline Send Email
Mar 29, 2007
12:01 am
21051
... Exactly -- you're adding *all the values* regardless of whether the box is "successful", i.e. checked. :-) Untested, but something like var b1 =...
Hassan Schroeder
laughingandj...
Offline Send Email
Mar 29, 2007
12:02 am
21052
I have a form with three checkboxes, and want to set another variable depending on which boxes are checked. The boxes have values of 1, 2, and 4, and I want to...
caitlin_weaver
Offline Send Email
Mar 29, 2007
12:03 am
21053
Hi, I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate" software which...
spot_notrub
Offline Send Email
Mar 29, 2007
12:18 am
Messages 21024 - 21053 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