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...
Show off your group to the world. Share a photo of your group with us.

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 14347 - 14376 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14347
There are zip code validators around, just check the sourcecode sites. www.javascriptsource.com www.a1javascripts.com Etc...
Russ Michaels
snake@...
Send Email
Jun 1, 2002
10:07 am
14348
I have set up a form so a visitor fills in their billing info and then checks a box if their shipping info is the same. This is working fine except I think...
D Woods
debbie@...
Send Email
Jun 1, 2002
2:14 pm
14349
You would have to go out of your way to ignore the shipping details they enetered and use billing details instead, which is what your doing. Simply stop using...
Russ Michaels
snake@...
Send Email
Jun 1, 2002
3:39 pm
14350
Thanks guys! :)...
katmunro
Offline Send Email
Jun 1, 2002
3:50 pm
14351
I've got a form that contains three hidden layers containing fields. I then have three radio buttons that hide/show these layers when clicked. This works...
abramadams
Offline Send Email
Jun 2, 2002
12:29 am
14352
I am starting to go into my own web-designing, and I have aquired a few new clients who need new company logos designed for them. I have created these logos...
dustrho
Offline Send Email
Jun 2, 2002
3:48 pm
14353
Hey Im new to JS and Im having some trouble getting off the ground. If anybody would like to personally help me a bit, it would be great or if you know a great...
egg_foot
Offline Send Email
Jun 2, 2002
4:21 pm
14354
You should set the z-indexa according to which layer should be on top. Thus when you make each layer appear, change it's z-index to be higer than all the...
Russ Michaels
snake@...
Send Email
Jun 2, 2002
4:30 pm
14355
You cannot stop someone downloading images. No matter what you do, once a webpage is viewed, all the images are in the browser cache, so they can be copied...
Russ Michaels
snake@...
Send Email
Jun 2, 2002
4:32 pm
14356
www.webmoney.com www.internet.com www.devguru.com www.sitepoint.com...
Russ Michaels
snake@...
Send Email
Jun 2, 2002
4:33 pm
14357
What Russ has said is true. Another possibility is putting the images into a PDF file. I believe that PDF files can be made so that the images/text cannot be...
Don Arnett
darnit78
Offline Send Email
Jun 2, 2002
5:27 pm
14358
Even in that case, the user can always do a print screen and then cut the image they want from the print screen. ... From: Don Arnett...
Matt Wolfgang
mr_dugout
Online Now Send Email
Jun 2, 2002
5:30 pm
14359
... What about using those programs that transforms images to HTML form like ASCII art? Those do inflate the file size but then there is no real picture to...
Jari Mäkelä
soulstone69
Offline Send Email
Jun 2, 2002
5:47 pm
14360
yeah i liked the web monkey one except that i don't get the image swap, it just doesn't make sense to me ... ground. ... great...
egg_foot
Offline Send Email
Jun 2, 2002
7:43 pm
14361
Re: copyright protection on images At your web site home page; (1) Why not use small white printing on black background, (2) put on a flash cartoon that takes...
Eric
e.richards@...
Send Email
Jun 2, 2002
8:44 pm
14362
Image swap: You are storing the over and out image as a javascript object. I.E instead of loading it into the page into an IMG tag directly, u load it into the...
Russ Michaels
snake@...
Send Email
Jun 2, 2002
8:49 pm
14363
Dear Friends ! Java Script Programmers House is a new group in yahoo. We started to talk about Java Script and improve our programming skills. The group will...
amin_rajaee
Online Now Send Email
Jun 2, 2002
9:56 pm
14364
Why should we - is anything wrong with this list ? ... From: amin_rajaee [mailto:amin_rajaee@...] Sent: Sunday, June 02, 2002 4:56 PM To:...
Kayode Yusuf
ko_yusuf
Offline Send Email
Jun 2, 2002
9:59 pm
14365
... One make-do solution is to divide your image over several smaller images and then table them together. Or more elegant: Create several GIF copies of your...
Sensei
kruidmeester
Offline Send Email
Jun 2, 2002
10:02 pm
14366
Dont worry about it... Firstly, you are protected by the law. You created the art..you own it. The courts are very strict about these things. the commercial...
Patrickru7@...
patrickru7
Offline Send Email
Jun 3, 2002
12:14 am
14367
okay i have one more question, i wrote this script but i want it so if you get it wrong it will just use the prompt to ask you again until you get it right. I...
egg_foot
Offline Send Email
Jun 3, 2002
2:46 am
14368
... From: egg_foot [mailto:egg_foot@...] Sent: Sunday, June 02, 2002 9:46 PM To: JS-Jive@yahoogroups.com Subject: Re: New to JS okay i have one more...
Don Arnett
darnit78
Offline Send Email
Jun 3, 2002
3:21 am
14369
what like this <!DOCTYPE html PUBLIC "-//W3C//DTD HTML HTML 3.2//EN"> <html> <head> <title>Enter password</title> <script type="text/javascript"> <!-- var pass...
Eric
e.richards@...
Send Email
Jun 3, 2002
3:34 am
14370
A little known aspect of the GIF spec... It allows comment blocks, meaning that you can embed ASCII text, such as a copyright notice, into the image. It is...
Unnamed Dude
etonic_ca
Offline Send Email
Jun 3, 2002
7:20 am
14371
More briefly. <script type="text/javascript"> <!-- while (prompt("What is the pasword?", "Type Here") != "hello") alert("Sorry you got it wrong"); alert("Good...
Kvasov Dmitriy
akbot@...
Send Email
Jun 3, 2002
7:30 am
14372
Very good Kvasov I forgot about the "Ternary operator" From Eric ... From: "Kvasov Dmitriy" <akbot@...> To: <JS-Jive@yahoogroups.com> Sent: Monday, June...
Eric
e.richards@...
Send Email
Jun 3, 2002
8:11 am
14373
... getElementById , remember JavaScript is cAse sEnsitIve! ... ppk _________________________________________________________________ MSN Photos is the easiest...
Peter-Paul Koch
gassinaumasis
Offline Send Email
Jun 3, 2002
12:36 pm
14374
Ternery Operator?? I don't see a ternery operator in that code. Ternery operator is (condition ? value1 : value2) Kvasov's code is simply a while loop. while...
Don Arnett
darnit78
Offline Send Email
Jun 3, 2002
3:08 pm
14375
... <script> function jsFunction(){ var myMessage = document.frmTest.to.value alert(myMessage); } </script> <form name="frmTest"> <input type="checkbox"...
Steve Reich
pagecoder
Offline Send Email
Jun 3, 2002
6:24 pm
14376
You need to loop through the check box first to find out WHICH one is checked and then when the loop finds the checked on set THAT to the variable....
John Magee
mageeje
Offline Send Email
Jun 3, 2002
6:26 pm
Messages 14347 - 14376 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