Tag: select
-
how to get multiple select values in javascript
//Here client is id of multiple dropdown…. <select multiple=”multiple” id=”client” > <option value=’1′>1</option> <option value=’2′>2</option> <option value=’3′>3</option> </select> <input type=’button’ value=’Test’ onclick=’tes()’> <script type=’text/javascript’> function tes() { var cnt=document.getElementById(‘client’).length; var arr=new Array(); var j=0; for(var i=0;i<cnt;i++) { if(document.getElementById(“client”).options[i].selected == true) { …
-
how to insert,select,delete,update data from file in c?
Download example file : example.c Compiled on : Borland Turbo C++ 3.0
