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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 20009 - 20039 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20009
I have the following files in my /home/pmro/totem directory 1st file: index.php <html> <head> <title>Crase Sigma - Crase Link</title> <meta...
paulogoes2002
Offline Send Email
May 6, 2004
3:25 am
20010
Is there an easy way to get the content of an iframe? For example: if I want to extract the value of an iframe and place it somewhere else on the page. <form> ...
Steffan A. Cline
steffan_cline
Online Now Send Email
May 9, 2004
1:56 am
20011
Hi all, I Have a problem with some jave script i am currently integrating my application to webshpere and i found some script code is not working. The Code is...
hari kishan
harikishan_vvs
Offline Send Email
May 9, 2004
2:31 am
20012
This is a little project I have worked on for a while. For the most part I have it working ok. There is one little bug left. <form id="cgi"...
Steffan A. Cline
steffan_cline
Online Now Send Email
May 9, 2004
4:23 pm
20013
Hello Guys: I have a <TR> that has an ID on it. When I select a row, I have the row being highlighted and the font changing color to white. I do this through...
Andy and Kim Mills
historynut13
Offline Send Email
May 10, 2004
4:51 pm
20014
i dont think fontColor is a property of the TD your script is referring to. i think fontColor is a property of an element that has a style applied to it. so,...
Carlos Mossman
spamcarloshere
Offline Send Email
May 10, 2004
9:25 pm
20015
Extract the contents of the IFrame using either innerHTML or innerText to get the contents in HTML or plain text format, respectively. "Steffan A. Cline"...
Mostafa Awad Balat
balat_eg
Offline Send Email
May 11, 2004
2:22 pm
20016
You may use style.visibilty = "visible"; style.visibilty = "hidden"; Notice that this will conserve the placeholder of the object you on which you apply this...
Mostafa Awad Balat
balat_eg
Offline Send Email
May 11, 2004
2:24 pm
20017
How can I test a substring of one single data to see if it is a number? for ex I take my_test=my_string.charAt(index); if my_test (is not a number) {blablabla}...
laurence
ldweb@...
Send Email
May 12, 2004
6:47 am
20018
From some of my code (simplified somewhat) if (! isNaN (Number (myField))) // goody, it's a number else // better complain This will probably also work from a...
David Smart
smartware_co...
Offline Send Email
May 12, 2004
10:27 am
20019
Using explorer 6.0, xphome. Some images on pages will not diplay. Some entire pages are blank. I can sometimes see some images and links on a page and not...
Frank Free
ffreeffree
Offline Send Email
May 12, 2004
6:07 pm
20020
first check if it is null if its not then use isNaN(var) to check if its a number. laurence <ldweb@...> wrote: How can I test a substring of one single...
prashant chari
callmecool_in
Offline Send Email
May 12, 2004
6:09 pm
20021
anyone know how to rotate banner, but the banner not just the image, I'm using image and flash. anyone have the script? Thanks Suwandi...
suwandi
suwandiy
Online Now Send Email
May 13, 2004
6:05 am
20022
The most used way is the one alredy suggested to you: isNaN( yourStringHere ); if that yields true, it is NOT a number. I can perhaps add, just for...
AV
vallinis
Offline Send Email
May 14, 2004
8:15 pm
20023
Absolutely correct. Perhaps, I can add that anyway you can extract the contents of an iframe ONLY if that iframe is not liked to a website outside yours. OR,...
AV
vallinis
Offline Send Email
May 14, 2004
8:24 pm
20025
... Ah, an affiliate spammer. Danny http://www.dannyg.com...
Danny Goodman
ae9f
Offline Send Email
May 16, 2004
6:22 am
20026
User was bannef, message was removed....
Michael Dinowitz
mdinowit
Offline Send Email
May 16, 2004
5:08 pm
20027
Uh? I'd exclude this could be Danny Goodman. I mean it could be but normally mr. Goodman writes articulated emails with meaningful contents, I'd tend to think...
AV
vallinis
Offline Send Email
May 17, 2004
6:19 pm
20028
This is simple, but I am on the steep part of the learning curve and would appreciate a boost. I am only trying to add two form fields and output to a third, ...
Richard Alford
cmalford
Offline Send Email
May 30, 2004
7:00 pm
20029
I am on vacation until Thursday June 3. Please direct all requests for IT assistance to Mike Halford or Jeffrey Smith. Otherwise I will respond to you upon my...
Russell Scheinberg
rscheinberg59
Offline Send Email
May 30, 2004
7:01 pm
20030
Richard, ... Use the parseFloat() or parseInt() to convert the string to a number: var n1 = parseFloat(document.add_test.v1.value, 10); var n2 =...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
May 30, 2004
7:35 pm
20031
... I did a summary of the different ways to do type coercions that on CodingForums recently. Have a look at <http://codingforums.com/showthread.php?p=203776>....
liorean
Offline Send Email
May 31, 2004
12:02 am
20032
Thanks. Also ran across a trick - var n = number - 0; but something about "tricks" is a bit unsettling. Richard www.horsenhounds.com ... From: "Dan G....
R Alford
cmalford
Offline Send Email
Jun 1, 2004
3:42 am
20033
Agreed. I tend to use the Number function, i.e. var n1 = Number (document.add_test.v1.value); Seems inherently "nicer" than subtracting zero or even using ...
David Smart
smartware_co...
Offline Send Email
Jun 1, 2004
8:26 am
20034
... Well, there are even nicer ways to do it. Let me quote ECMA-262 3ed: ~~~~<@>~~~~ 11.4.6 Unary + Operator The unary + operator converts its operand to...
liorean
Offline Send Email
Jun 1, 2004
11:20 am
20035
Interesting. That one's not in the (fairly old) JavaScript reference I have. My personal opinion, though, is that the + operator is already overburdened ...
David Smart
smartware_co...
Offline Send Email
Jun 1, 2004
12:49 pm
20036
Thanks again. Ain't it fun to learn yet another language/syntax! If I had a nickel for every language/syntax I was semi-fluent in I would have a couple of...
R Alford
cmalford
Offline Send Email
Jun 1, 2004
3:41 pm
20037
Best yet, imho. Still marginally falls in the "trick" category but I can live with it. Frankly, typing is a convenient property of a language but it leads to...
R Alford
cmalford
Offline Send Email
Jun 1, 2004
3:42 pm
20038
Why not just using the simple parseFloat() ? var nx=parseFloat(document.add_test.v1.value); That's the most typical way to turn a string into a number (PS all ...
AV
vallinis
Offline Send Email
Jun 1, 2004
3:57 pm
20039
I would like some dhtml help. I want offer 3 radio buttons that would control a dynamic area of text on the screen according to which radio button they chose. ...
Michael Hall
bsmbahamas
Offline Send Email
Jun 2, 2004
5:03 am
Messages 20009 - 20039 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