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...
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 20760 - 20789 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20760
I have following fragment of code: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <script language="javascript"> function hideTableRow(rowID) { var row =...
Predrag Tomasevic
t_predrag
Offline Send Email
Aug 4, 2005
4:29 pm
20761
Try this for the function: function hideTableRow(rowID) { var row = document.getElementById(rowID); if(row.style.display == "none"){ row.style.display =...
Weston Renoud
rubberducky84
Offline Send Email
Aug 4, 2005
5:46 pm
20762
Actually this will cause you grief in standards compliant browsers because the display property for table rows is table-row. An easier solution is to create a...
Roger Roelofs
rogerroelofs
Offline Send Email
Aug 4, 2005
7:26 pm
20763
AGRH %^#^$... style.display %^#$&^ and I used it a two days ago and forgot about it... In any case tnx a lot to both of you. c-ya ... From:...
Predrag Tomasevic
t_predrag
Offline Send Email
Aug 4, 2005
8:04 pm
20764
It seems that this gruop is transforming into me asking you Jscript gurus ;). Anyway, I have one interesting situation. I'm catching keydown event of textbox....
Predrag Tomasevic
t_predrag
Offline Send Email
Aug 5, 2005
7:59 am
20765
I was looking for a good function that would check uploaded files for illegal extensions. Any recommendations? HTC Disclaimer: The information contained in...
Bosky, Dave
sknyppy
Offline Send Email
Aug 9, 2005
3:09 pm
20766
What are illegal extensions? ;-) I have done something like this below which can obviously be bypassed by disabling JS so really your best approach would be...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Aug 9, 2005
3:18 pm
20767
I would rather use an array to hold the allowed extensions. var allowedExt = ['gif', 'jpg']; ... for (var i = 0 ; i < allowedExt.length ; i++) if (ext ==...
Rafael Raposo
porrak
Offline Send Email
Aug 9, 2005
3:38 pm
20768
Yeah, that would be more beneficial for more extensions than we were checking for. "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, ...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Aug 9, 2005
5:32 pm
20769
Gurus, Reports page of my shopping cart shows all suppose 7 Orders placed in a day. I want to add two print buttons. One is to show at the end of every order...
Mian Waqas
webmaster_waqas
Offline Send Email
Aug 15, 2005
8:29 pm
20770
Hi, Maybe you have figured this out already, but according to my ascii chart, . is 46. 110 is 'n' and 190 is extended, so will render based on browser...
Dave.Phillips@...
Send Email
Aug 15, 2005
8:29 pm
20771
In a nutshell - you can't print a specified area of a page using JS. You could create a popup which generates the specified order on the fly and print that (if...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Aug 16, 2005
6:45 am
20772
does anyone know if it is possible to get clipboard contents and put them into a textbox, and also if it is possible, to send forum contents to a page...
Chris Lukas
met_guru
Offline Send Email
Aug 17, 2005
9:16 pm
20773
Free C Language Skill Evaluation Check Your Skill In 5 Minutes Visit www.4futureengineers.com/ctest.htm [Non-text portions of this message have been removed]...
Future Engineers
engineers_fu...
Offline Send Email
Aug 25, 2005
10:17 pm
20774
I would like to dersign my first javascript but would like to know how, also i would like to know how the coding works. I all ready know HTML and understand...
pnonnash
Offline Send Email
Aug 25, 2005
10:18 pm
20775
hi function CheckExtension(FileName,Extensions) { var t = FileName.split("."); var ext = t[t.length-1].toLowerCase(); for(var i=0;i<Extensions.length;i++) ...
Alain Haddad
haddad_alain
Offline Send Email
Aug 25, 2005
10:18 pm
20776
There is always one idiot who does this - just one more rule to add to my spam rules and to report. "This e-mail is from Reed Exhibitions (Oriel House, 26 The...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Aug 26, 2005
5:37 am
20777
... Try out the tutorials here : http://www.w3schools.com/js/default.asp...
Stephen Moretti
cfdeveloperuk
Offline Send Email
Aug 26, 2005
9:14 am
20778
Hi, How to call a Parent Window Java script function from a Pup-Up Child Window in .net. My code is like this in Parent .aspx page <HTML> <script...
santu_immaneni
Offline Send Email
Sep 19, 2005
10:42 pm
20779
Hi All- My website has a splash page which, when clicked on, activates a javascript to open another window, sized as I want my site to be viewed. On most...
dakshots
Offline Send Email
Sep 30, 2005
6:10 pm
20780
Dak, Try this. 3 changes. 1) I took out the preloadimages(); call in your body tag, there is no function that this is associated with, so why do you have it...
kevin
kevin@...
Send Email
Sep 30, 2005
6:29 pm
20781
Isn't that because pop-up blocking??...
Rafael Raposo
porrak
Offline Send Email
Sep 30, 2005
6:35 pm
20782
My initial two thoughts would be that 1 - The user does not have javascript enabled. 2 - They have a popup blocker that blocks this. I will let you know if I...
Jon Hohgrefe
simple_tailor
Offline Send Email
Oct 3, 2005
2:00 am
20783
Please tell me which server scripting is the fastest for developing AJAX application ? is it true that PHP is better in adding JS blocks than ...
Gurudatta Raut
infoligence_...
Offline Send Email
Oct 3, 2005
2:01 am
20784
Hi Dak, --"Some visitors tell me they cannot get past the splash page. They're mostly (but I don't believe exclusively) Windows/IE users. Yet, I know that some...
Bas van Hoorn
kruidmeester
Offline Send Email
Oct 4, 2005
5:51 pm
20785
the great thing about "AJAX" is that what you use on the backend really doesn't matter. Actually, you could have 1 html page that uses Javascript "AJAX" to...
Ken Auenson, II
kja2
Online Now Send Email
Oct 6, 2005
7:57 pm
20786
I am trying to get away from using the old way of doing things, but am trying to figure something out. I can get an items form name by doing ...
Bob
bassman696
Offline Send Email
Oct 18, 2005
12:55 am
20787
are the functions that require a reference to the form being executed *from* member elements of the form? if so, you could use the following overly-simplified...
Carlos Mossman
spamcarloshere
Offline Send Email
Oct 19, 2005
4:38 am
20788
AFAIK, form names and forms are just held in an Array within the document in the DOM at page load. Of course you can have more than one form per page so you...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Oct 19, 2005
10:28 am
20789
Could you pass in the name of the form to the JS? J Hohgrefe simple_tailor ... __________________________________ Yahoo! Mail - PC Magazine Editors' Choice...
Jon Hohgrefe
simple_tailor
Offline Send Email
Oct 20, 2005
4:02 am
Messages 20760 - 20789 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