Search the web
Sign In
New User? Sign Up
JavaScript_Official · JavaScript . AJAX . ActionScript
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 8693 - 8722 of 16817   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8693
Nothing prevents you from placing it in the root directory. Just leave it there and call it like this: <script src="form.js"></script> Mark micro_learner...
Mark E
meckeard2000
Offline Send Email
Feb 2, 2004
5:30 am
8694
Hi, new to this group! First my system: Personal Web Server 4.0 (W98) Access 97 Nescape 4.x Java Script Debugger 1.1 256K mem 850 Mhz I'm just starting with JS...
paradok_99
Offline
Feb 2, 2004
5:31 am
8695
Hi! (This is the second post on this topic, my first post didn't seem to work, my apologies if it shows up twice). My system: MS Personal Web Server 4.0 (W98) ...
paradok_99
Offline
Feb 2, 2004
5:32 am
8696
Hi I am new to JavaScripting.. My question is After I check the validity of an Input say an Intger and if that test fails I need to get the focus back to the...
micro_learner
Offline Send Email
Feb 2, 2004
5:32 am
8697
To debug ASP, you need the Microsoft Script Debugger, which you can download from here: ...
Jon Stephens
jdwayside
Offline Send Email
Feb 2, 2004
6:13 am
8698
I am using the frames array on a three frame page to change all three frames with a single click. I've got the js function worked out, but I'm not sure in...
j0nharris
Offline
Feb 2, 2004
4:52 pm
8699
Now that I know how to create an element using document.createElement (); how can I delete an Element? ... tag, e.g. ... you must insert it into the ... page,...
joeandtelus
Offline Send Email
Feb 2, 2004
9:41 pm
8700
Hi all, I need to detect the position of mouse on my web, I try to make it compatible for IE6 SP1 and Netscape 7.1, at least I have those browsers in my pc. I...
Hadi Ariwibowo
dear_hadi
Offline Send Email
Feb 3, 2004
4:01 am
8701
document.getElementsByTagName ("body")[0].removeChild (document.getElementById ("p")); Dave S ... From: joeandtelus To: javascript_official@yahoogroups.com ...
David Smart
smartware_co...
Offline Send Email
Feb 3, 2004
7:09 am
8702
You can use removeChild() or replaceChild(): <body> <p id="hi">Hello.</p> <p id="bye">Good-bye.</p> </body> document.body.removeChild(...
Jon Stephens
jdwayside
Offline Send Email
Feb 3, 2004
5:16 pm
8703
In whichever frame or frameset page you want -- just use the same object hierarchy you'd use in referencing anything else in a frameset, keeping in mind that...
Jon Stephens
jdwayside
Offline Send Email
Feb 3, 2004
5:17 pm
8704
Hi everyone, This looks like a good group! As you may have guessed I am new to it. I have a question: For one of my previous development projects, I use a...
Howard Kiewe
hkiewe
Offline Send Email
Feb 3, 2004
8:13 pm
8705
Hello, Was wondering if someone could help me with a small snippet of js code that looks at a string and validates that it is in a certain format... for...
Jesse
stang_inc
Offline Send Email
Feb 3, 2004
8:14 pm
8706
function validate(numVal) { var chars = "0123456789."; var s = document.forms[0]; if( numVal != '' ) { for (var j = 0; j < numVal.length; j++) { if...
Jacob Wilson
strutsjo
Offline Send Email
Feb 3, 2004
9:54 pm
8707
I've been working on a script that attempts to get all the window objects that have spawned from my site. My goal is to loop through and destroy every window...
cockarm
Offline Send Email
Feb 4, 2004
1:19 am
8708
if( !/\d{8}\.\d{2}/.test(numberInput) ) alert("Sorry, you must input a number in xxxxxxxx.xx format.");...
Jon Stephens
jdwayside
Offline Send Email
Feb 4, 2004
4:51 am
8709
how do i change a float into an int? -Echo...
Echo
voxecho
Offline Send Email
Feb 4, 2004
4:39 pm
8710
Now there are many web broswers on Net, e.g. IE, opera, NN, mozilla, real, MyIE and so on. JavaScript for different broswers is different. So, need I design...
ellenbober
Offline Send Email
Feb 4, 2004
4:39 pm
8711
Hello, I make an SVG program than track a gps on a map. My image that represent GPS must move with the coordinnate stocking in an xml file. My image move only...
skierx2224
Offline Send Email
Feb 4, 2004
4:40 pm
8712
Hi, are you refering to the child windows opened??? If yes then you can look for the child objects.. Thanks, Chirag ... __________________________________ Do...
Chirag Shah
chiragshah_in
Offline Send Email
Feb 4, 2004
4:40 pm
8713
Hi everyone, This looks like a good group! As you may have guessed I am new to it. I have a question: For one of my previous development projects, I use a...
Howard Kiewe
hkiewe
Offline Send Email
Feb 4, 2004
7:57 pm
8714
Echo, Did you try parseInt()? Some info: http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=javascript+parseint+function Mark Echo <yahoo@...>...
Mark E
meckeard2000
Offline Send Email
Feb 4, 2004
8:43 pm
8715
that = Math.floor (this); I define a "floor" method for numbers: Number.prototype.floor = function () { return Math.floor (this); } I was tempted to call it...
David Smart
smartware_co...
Offline Send Email
Feb 4, 2004
8:56 pm
8716
Coldfusion question. I am using the URL attribute in the cfchart tag, but I need the detail page to open in a pop-up window, how do I do that? I tried CFCHART...
dzoan-chau
Offline Send Email
Feb 4, 2004
9:55 pm
8717
you can have the url 'javscript:void(0)', and use onclick?? that's my guess, i only used cfusion once. ... <image.tiff> ... [Non-text portions of this message...
Robin Adrianse
robinadrianse
Offline Send Email
Feb 5, 2004
1:14 am
8718
Ideally, you would want to cover every browser. But I don't know enough about all of them to say that it's worth the effort. I am very careful with my use of...
Mark E
meckeard2000
Offline Send Email
Feb 5, 2004
2:54 am
8719
hi folks... My Problem is as follows... I have a text box ..on the onChange() event I do a validation by a function ..On error the Focus is got back to the...
micro_learner
Offline Send Email
Feb 5, 2004
3:22 am
8720
Hello. I parse a xml file but i only want the second record. How can I get it in javaScript: function init(evt) { if (!window.svgDocument)svgDocument=...
skierx2224
Offline Send Email
Feb 5, 2004
8:29 pm
8721
ISSUE: Setting Attributes in a Dyanmically Drawn Input type="text" Box I am dynamically altering a couple rows in a table based on a user selection. Based on...
Wendi Turner
javadevelope...
Offline Send Email
Feb 5, 2004
8:30 pm
8722
Here is the deal: When a page is loaded, it has to set a focus on an input type=text where I have to insert a number with 13 positions. After I have inserted...
Marcelo Estrela
mestrela
Offline Send Email
Feb 5, 2004
8:30 pm
Messages 8693 - 8722 of 16817   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