There are zip code validators around, just check the sourcecode sites. www.javascriptsource.com www.a1javascripts.com Etc...
Russ Michaels
snake@...
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@...
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...
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...
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...
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...
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@...
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...
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...
... 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...
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@...
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@...
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...
... 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...
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...
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...
... 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...
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@...
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...
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@...
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@...
Jun 3, 2002 8:11 am
14373
... getElementById , remember JavaScript is cAse sEnsitIve! ... ppk _________________________________________________________________ MSN Photos is the easiest...
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...