Ciao, si hai ragione scusa, dato che le immagini a volte dicono più di mille parole:

Il codice sovracitato apre 2 pop up in successuine:

prima questo:



e poi questo:



io vorrei modificare il primo pop up inserendo un menu select al posto della text area.

dato che non posso editare il mio primo messaggio riposto qui il codice ordinato:

codice:
function BBCurl() { 
var FoundErrors = ''; var enterURL = prompt("Inserisci l URL", "http://"); 
var enterTITLE = prompt("Inserisci il testo per l URL", " Testo URL"); 
if (!enterURL) { FoundErrors += "Non hai inserito nessun URL "; } 
if (!enterTITLE) { FoundErrors += "Non hai inserito nessun testo"; } 
if (FoundErrors) { alert("Error : "+FoundErrors); return; } 
var bbtags = "[urlc="+enterURL+"]"+enterTITLE+"[/curl]"; document.forms[form_name].elements[text_name].value+=bbtags; document.forms[form_name].elements[text_name].focus(); }