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 16038 - 16067 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16038
Hi I have the following array var minutesArray = new Array("('Select Sub Category','',true,true)", however is it possible to allow spaces in the array, for...
ian_v2002
Offline Send Email
Nov 1, 2002
2:43 pm
16039
You can use var meeting_minutesArray instead :) ... __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now ...
Raymond Irving
xwisdom
Offline Send Email
Nov 1, 2002
3:05 pm
16040
spaces should never be used in any coding variable ... From: Raymond Irving [mailto:xwisdom@...] Sent: 01 November 2002 15:05 To: JS-Jive@yahoogroups.com...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Nov 1, 2002
3:22 pm
16041
i agree spaces should never be used in a var name but he's not doing that. he's using it in the value there is an extraneous ( in the declaration. ...
savan.thongvanh@...
dsmwebguy
Offline Send Email
Nov 1, 2002
3:40 pm
16042
ian, You've asked your question in an exceedingly confusing way, but I believe your question is: Can a javascript variable name contain spaces? The answer to...
I-Lin Kuo
ikuoikuo
Offline Send Email
Nov 1, 2002
3:54 pm
16043
... From: <savan.thongvanh@...> To: <JS-Jive@yahoogroups.com> Sent: Friday, November 01, 2002 4:39 PM Subject: RE: Spaces allowed in javscript...
dev5
ldu5@...
Send Email
Nov 1, 2002
4:54 pm
16044
Why not use capitals? You're half way there anyway. :-) meeting minutesArray becomes meetingMinutesArray Regards, David Smart SmartWare Consulting ...
David Smart
david_j_smart
Offline Send Email
Nov 2, 2002
1:00 am
16045
Hi, I have a tree of values such that there r 4 departments and each department has a series of sub-departments... I am trying to create a function such that I...
Sandeep Murphy
sandeepmurthy
Offline Send Email
Nov 4, 2002
10:19 am
16046
are you building the array from a query? or is it hard coded?...
Matt Horn
horn_matt
Offline Send Email
Nov 4, 2002
10:34 am
16047
The array is built from a query..... ... From: Matt Horn [mailto:matt.horn@...] Sent: segunda-feira, 4 de Novembro de 2002 10:35 To:...
Sandeep Murphy
sandeepmurthy
Offline Send Email
Nov 4, 2002
10:38 am
16048
write 2 queries one to pull back the departments and one to pull back the subsection then loop over the departments and output the value of the second array ...
Matt Horn
horn_matt
Offline Send Email
Nov 4, 2002
10:46 am
16049
hi, I believe i am doing exactly what u r suggesting... but how do i send the values between the any two departments selected to a javascript function... I...
Sandeep Murphy
sandeepmurthy
Offline Send Email
Nov 4, 2002
11:07 am
16050
aahh ok if you call the checkboxes the same name <input type="checkbox" name="departments" value ="10"> and just alter the VALUE param then send that checkbox...
Matt Horn
horn_matt
Offline Send Email
Nov 4, 2002
11:16 am
16051
How can I submit a form contained on a document in an inline frame by clicking on an image that is located outside of the inline frame? Neither of these work: ...
Ricq Pattay
ricq_pattay
Offline Send Email
Nov 4, 2002
6:17 pm
16052
Hello Everyone, I've finally figured it out: var url='test.asp'; var data; var httpRequest; if (document.all) { httpRequest = new...
Raymond Irving
xwisdom
Offline Send Email
Nov 4, 2002
6:54 pm
16053
Try this: The key here is "parent.user_iframe.document.frmuser.submit()" <a href="javascript:parent.user_iframe.document.frmuser.submit()"><img src="save.gif"...
Raymond Irving
xwisdom
Offline Send Email
Nov 4, 2002
7:01 pm
16054
YOu need to access the frame object through the frame container of the main document. Try: <a...
Kayode Yusuf
Kayode.Yusuf@...
Send Email
Nov 4, 2002
7:04 pm
16055
Hi Ray, Could you please explain? From your code, I'm guessing the trick is that you have to override the mime type, not setting data = new String(); ... =====...
I-Lin Kuo
ikuoikuo
Offline Send Email
Nov 4, 2002
7:41 pm
16056
Well the problem was not with the mime type it was with ns6 been unable to convert data='what ever' when the send() method was called. So I did some major ...
Raymond Irving
xwisdom
Offline Send Email
Nov 4, 2002
8:33 pm
16057
Hi, I've a problem. Maybe I just don't understand Gecko at all. Here's my little script (running on a Mac, by the way...): //Displays little window with an...
Niels Fanøe
denelo2000
Offline Send Email
Nov 5, 2002
10:30 am
16058
Hi ALL, Please, is there any way to implement a non-volatile bubble help in JS. i.e when you mouse over a field a "pop up" like help field pops up to display a...
Kayode Yusuf
Kayode.Yusuf@...
Send Email
Nov 5, 2002
4:12 pm
16059
http://www.dynamicdrive.com/dynamicindex5/texttool.htm http://www.dynamicdrive.com/dynamicindex5/linkinfo.htm try those...
Matt Horn
horn_matt
Offline Send Email
Nov 5, 2002
4:24 pm
16060
Thanks !!! KOY CONFIDENTIAL INFORMATION: This email and any attachment(s) contain confidential and/or proprietary information of Open Access Technology...
Kayode Yusuf
Kayode.Yusuf@...
Send Email
Nov 5, 2002
5:14 pm
16061
Hello all I could use some help with split(). It's description says that it returns an array of the substrings that have been split from the delimiters. But...
Bruce, Rodney S HQISE...
rodbruce1000
Offline Send Email
Nov 5, 2002
5:38 pm
16062
TRY: example: String - (me,you,them) String.split(","); alert(String.split(",")[1]) 'me' is index 0 'you' is index 1 'them' is index 2 use the array bracket...
Kayode Yusuf
Kayode.Yusuf@...
Send Email
Nov 5, 2002
5:47 pm
16063
I get the error this object doesn't support this property or method for both alert(String.split(",")[1]) and newsub = String.split(",")[1] ... From: Kayode...
Bruce, Rodney S HQISE...
rodbruce1000
Offline Send Email
Nov 5, 2002
5:57 pm
16064
Try and execute this verbatim - it worked wehn I tried it: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document...
Kayode Yusuf
Kayode.Yusuf@...
Send Email
Nov 5, 2002
6:02 pm
16065
Kayode Thanks for the help my fault when I was passing the string to the function I was only passing one element: <input onchange="function(#items#)"> was...
Bruce, Rodney S HQISE...
rodbruce1000
Offline Send Email
Nov 5, 2002
6:07 pm
16066
Here is how I do it var myString = "1,2,3,4,5,6,7"; var chopString = new Array(); n31= myString.split(','); for(var x=0; x<chopString.length; x++) { ...
Free Roulette Systems
AIhacker
Offline Send Email
Nov 5, 2002
6:14 pm
16067
opps var myString = "1,2,3,4,5,6,7"; var chopString = new Array(); chopString = myString.split(','); for(var x=0; x<chopString.length; x++) { ...
Free Roulette Systems
AIhacker
Offline Send Email
Nov 5, 2002
6:18 pm
Messages 16038 - 16067 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