Hello... I'm trying to make a form that will take the same inputs as the del.icio.us bookmarking page, and pass those values to the actual page when the user submits.
In javascript, I'm using this (url, notes, desc, and tags are all correctly-defined strings): var destination = "http://del.icio.us/post?v=4;url=" + encodeURIComponent(url) + ";title="+ encodeURIComponent(desc) + ";tags=" + encodeURIComponent(tags)+ ";notes=" + encodeURIComponent(notes); to define a URL for the javascript to go to. It works, except for the tags. That is, on my page, there's a form like this ([] = form field): URL: [http://someurl.com] Title: [Some URL ] Notes: [no notes, really ] Tags: [webpage url some ] [submit] When a user submits that, it goes to the del.icio.us "add bookmark" page, and the fields are filled out like so: URL: [http://someurl.com] Title: [Some URL ] Notes: [no notes, really ] Tags: [ ] [submit] The actual url being used, (when I document.write() it before going to the URL) includes all four field/value pairs. Why is del.icio.us recognizing the description, url, and notes that I pass it, but NOT my tags? What do I have to do to get it to recognize my tags? Thanks in advance.

