Programming C# C++ (7) Delphi (617) Java (8) JavaScript (31) Document (8) Events (8) ExtJS (9) Strings (3) perl (9) php (4) VBScript (1) Visual Basic (1)
Exchange Links About this site Links to us 
|
General :: Web publishing :: JavaScript
Code snippets to add functionality to your HTML pages, preferably cross-browser.
Articles:
This list is sorted by recent document popularity (not total page views).
New documents will first appear at the bottom.
Featured Article
RESET button in my form does not restore my listbox contentQuestion: My form uses javascript to populate a SELECT listbox with zip codes chosen by the user. The zip code listbox could have any amount of entries. When the user presses the form's RESET button, it does not restore the listbox to its original entries.
Answer: The reason that a reset button will not restore a SELECT listbox is because such a SELECT list is considered to be static. The user would normally only change which item(s) is(are) selected. Your form's reset button will indeed try to restore the original selection.
What you need to do is have a second copy of that listbox on your form, but hidden. This copy will never be used. To hide a listbox you need to assign the style visibility="hidden".
Then put an onclick() event on that listbox. In the onclick event call the function copy_listbox which is shown below. It takes two arguments where tgt is the target listbox (the one that will be filled) and src is the source listbox - the one that will be duplicated.
In your case you would call
copy_listbox(zipcode_list, hidden_list)
Ideally your server side script which generates the original HTML form will provide the hidden copy and make sure it has the same content. If that is not possible, you can include an empty hidden listbox and in the body onload() event, call copy_listbox with inverted parameters.
 | |  | | function copy_listbox(tgt,src) {
var lb=document.getElementById(tgt);
for (var i=lb.options.length-1; i>=0; i--){
lb.options[i] = null;
}
lb.selectedIndex = -1;
var bk=document.getElementById(src);
for (var i=bk.options.length-1; i>=0; i--){
oOption = document.createElement("OPTION");
oOption.text = bk.options[i].text;
oOption.value = bk.options[i].value;
oOption.selected = false;
lb.options[lb.options.length] = oOption;
}
}
| |  | |  |
|
| Most recent comments
2009-11-20 20:00:44:
by PT
in Male Dating Scammers
on Dating scammer Smith Williams:
Miss Marples, my goodness you must be very ill from that picture! Please get the rest you need so that you may come back here & fight the war against our enemies! :) I am doing great, and actually t ... read more
|
|
2009-11-20 19:49:47:
by anonymous
in Dating Scams
on Dating scammer Anastasiya from Medvedevo:
Hello Arturo.
I am very pleased so soon to receive your letter.
It is very pleasant, that you have not left my letter without the answer.
I have the first experience of the correspondence ... read more
|
2009-11-20 19:12:21:
by anonymous
in Dating Scams
on Dating scammer Natalya from Osinniki, Russia:
some more pics Elena hromihina
|
2009-11-20 18:49:14:
by [hidden]
in Dating Scams
on Dating scammer Natalija Dostojewski:
Hi everybody. I saw this advertisement by Kijiji, I was curious and drop a short e-mail.
Please, I would like to know more about how this 'scamming' mafia operates, what they can do to you!! Can ... read more
|
2009-11-20 17:14:32:
by bernie
in Dating Scams
on Dating scammer Nancy Milman from Accra, Ghana:
I KNOW OF A CYNTHIA OSHO I THINK FROM CANADA. SHE ASK ME FOR AIRFARE TO COME TO MONTREAL. I DIDNT FALL FOR THAT. I HAVE SEEN HER FACE BEFORE. I TRY TO STOP THEM ALL WITH WESTERN UNION
|
2009-11-20 17:14:00:
by anonymous
in Dating Scams
on Dating scammer Nadezhda Titova:
2 more names for ananstasiya illarionova are Tatyana Shepeleva or Nadezhda Basova
|
2009-11-20 17:13:17:
by Dirk
in Dating Scams
on Dating scammer Ekaterina Rozhentsova:
Gratuliere!
|
2009-11-20 16:54:54:
by [hidden]
in Other Scams
on Another dating / chat scam - USA/ Nigeria connection:
there is another from Nigeria she is a hot blond from Niles Il ,she came across as dame o1 on Mertodate.com his or her email is annarol10@yahoo.com. This one is a geologist,she got robbed by thieves a ... read more
|
2009-11-20 16:50:06:
by wanwan
in Dating Scams
on Dating scammer Irina Prigunova:
 http://www.delphi. p=8#59237
@2007-17-11-03, 13:04:09 (updated: 2007-11-03, 13:22:53)
OJAS from United States
I tried it but ?
O ... read more
|
2009-11-20 16:24:54:
by anonymous
in Male Dating Scammers
on Dating scammer David Williams:
hi i JUST WANTED TO SAY THAT i HAD SOMEONE e-MAIL ME ABOUT MY PSP BUNDLE FOR SALE. AND SAID SHE SENT ME THE MONEY BUT IT NEVER SHOWED UP IN MY PAYPAL ACOUNT SO I ASKED HER ABOUT THAT AND THIS IS WHAT ... read more
|
|