... That I'm afraid you'll have to find out yourself. Google is your friend. ... I don't agree that HTML/JS is a web application, but thats a whole other ...
... Could you assign the GUID as the form field name and replace the minus signs with underscores when you generate the page, then handle the GUID in reverse...
Thia happens because javascript deems the - sign as a mathematical operator (subtraction), not as a part of a string name. Use the associative power of the...
Start coding Dave. Start giving solutions to those who ask questions. Thus far you're only able to open your mouth, but that is not necessarily related to...
since these questions are "so simple" we are missing your contribution to these so simple questions. We have not seen you addressing them lately, and this...
Actually I was looking at approximately 100 messages from about 30 other groups - some relating to programming (in about 6 languages, not just JavaScript) and...
... Well, no. The group is about answering questions. In most cases people aren't asking for a whack of code - they're asking for an answer to a question. ...
We are speaking here, What you answered to the other spicy yahoogroups you are subscribed to it is of no relevance when you speak HERE. I TOO answered to many...
im sorry that i just insulted you guys, the book i have for javascript doesnt really help i was wondering if you could offer a good book to get started to...
Yeah good idea, say that to dave, And btw inform him that "construct" is an english term - if you used it. We have a lot of discussion about english language...
If instead of wasting time to write NON-CODING off topics to me you'd use that time to answer the CODING questions asked here, you won't have to arrive late...
The best book I could suggest is Danny Goodman - The Javascript Bible it is a thick book and costs a little, but it is definitive. I have here about 7...
... ?! Must have been before my time :-) (and there's nothing about this in the description <http://groups.yahoo.com/group/JS-Jive/>) ... Well, if the...
... Heh heh.... Its been that long since I joined this list that I haven't looked at the description in ages. If I remember correctly there were getting to be...
Thanks Alberto! I kind of figured that was what was going on, what I was trying to do was something like document.myform.[guidhere].checked ... your code makes...
Thanks Stephen-- Alberto pointed out the right syntax -- I knew it had to be something easy. But I do appreciate the suggestion ... unfortunately Guids are a...
Well though the question was slightly ot, I can perhaps articulate an answer as follows - not necessarily the best answer of course. PERL - it is a terrific...
If I open a popup at 800 x 600, is that the total size of the window including any browser controls like scrollbars, address, location, etc., or just the size...
I believe it is the content area, aka available width and available height. However, with a window I did once before, Netscape counted the area under the...
You are correct. Just reliving nightmares of right aligning where Netscape wanted to shove things under the scrollbar. JoAnn Schlosser Web Consultant ASI...
... OK, so if I want to display an 800 x 600 image, I'm going to have to make a slightly larger window I guess. Thanks, Dean Hamack Macromedia Certified Flash...
Manuals report it is the window _outer_ width. By "outer" it is arguably assumed it should be the window as a whole, namely chromes included - otherwise what...
... OK, I've got a way to verify this. I'm going to open one at 800 x 600 and take a screen shot. Then I'll measure it in Photoshop and report back. Dean...
OK, here's the verdict: I opened a window with the following script: function flash(URL) { day = new Date(); id = day.getTime(); eval("page" + id + " =...
Dang, I was right the first time. Always go with your first answer. Now, does it behave the same way in Netscape as it does in IE?? JoAnn Schlosser Web...
... Netscape 7 seems to drop 4 pixels off the width and 2 pixels off the height. So a window that is 800 x 600 total size in IE is 796 x 598 in NN. Dean Hamack...
Manuals report width and height are referred to the "outer window". Tests show that it is the document area alone, actually. If you have an image 50x50, open...