---
title: "lägg till o ta bort i listbox?"
type: "forum-thread"
url: "https://www.webforum.nu/amne/javascript/141832-lägg-till-o-ta-bort-i-listbox"
topic: "JavaScript"
topic_url: "https://www.webforum.nu/amne/javascript"
author: "eddy1"
published: "2006-02-01T15:45:02.000Z"
updated: "2006-02-01T16:44:26.000Z"
replies: 2
views: 339
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/javascript/141832-lägg-till-o-ta-bort-i-listbox"
---

# lägg till o ta bort i listbox?

## #1 — eddy1, 2006-02-01T15:45Z

Någon som har koll på hur man gör om man vill ta bort eller lägga till i en listbox  ??

Mvh

Permalänk: https://www.webforum.nu/p/141832

## #2 — Erik Juhlin, 2006-02-01T16:06Z

Exempel:

```
var sel = document.formuläret.listboxen;

//add
sel.options[sel.options.length] = new Option("text", "value", false, false);

//remove
sel.options[0] = null;
```

Permalänk: https://www.webforum.nu/p/1759682

## #3 — eddy1, 2006-02-01T16:44Z

lyssande..

Bussigt..

Permalänk: https://www.webforum.nu/p/1759697

---

Tråden på webben: https://www.webforum.nu/amne/javascript/141832-lägg-till-o-ta-bort-i-listbox
