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...
You can use var meeting_minutesArray instead :) ... __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now ...
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@...
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. ...
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...
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...
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 ...
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...
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...
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: ...
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"...
YOu need to access the frame object through the frame container of the main document. Try: <a...
Kayode Yusuf
Kayode.Yusuf@...
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(); ... =====...
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 ...
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...
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...
Thanks !!! KOY CONFIDENTIAL INFORMATION: This email and any attachment(s) contain confidential and/or proprietary information of Open Access Technology...
Kayode Yusuf
Kayode.Yusuf@...
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...
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@...
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...
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@...
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...
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++) { ...