Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms_bak
08select_niz.html
08select_niz.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HTML obrasci -primjer</title> <script type="text/javascript" language="JavaScript"> function ispis(){ prozor=window.open("","","toolbar=0,location=1,left=0,top=0,screenX=0,screenY=0"); prozor.resizeTo(600,400); for (i=0;i<document.forms[0].naselje.length;i++){ if (document.forms[0].naselje[i].selected==true){ var mjesto=document.forms[0].naselje[i].value; prozor.document.write("<br>Izabrali ste: <b>",mjesto ,"</b>"); } } } </script> </head> <body bgcolor="yellow"> <form action="javascript: ispis()"> Držite pritisnutu CTRL tipku i izaberite više mjesta: <br> <select name="naselje" size="9" multiple> <option value="NAŠICE">Našice</option> <option value="VALPOVO">Valpovo</option> <option value="OSIJEK">Osijek</option> <option value="ĐAKOVO">Đakovo</option> </select> <br><br> <br><input type="Submit" value="Potvrdi"> <input type="Reset"> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code