An HTML user interface element for choosing one or more option(s) from a finite collection of options.
0
votes
2answers
27 views
Is it possible to submit an html form without using an input button?
I found this article (http://www.developertutorials.com/tutorials/javascript/javascript-form-submission-no-button-050412-1292/), but it is 8 years old (c. 96 in Internet and duckbilled Platypus ...
1
vote
1answer
49 views
Select box with empty option, which is not present in html dom
At this website: http://www.salus.si/en (if you click on "change" in top banner*) the select element starts with an empty option. HTML looks like this:
<select ...
1
vote
0answers
12 views
TinyMCE 4: Allowing select and input checkboxes to be editable
An HTML template that I'm working on has a variety of HTML select and checkbox elements contained within it.
Eg.
<select>
<option></option>
<option>No</option>
...
0
votes
2answers
27 views
Removing options from select using jQuery
Suppose I have a Select element:
<select>
<option value="Name 1">Simon</option>
<option value="Name 2">Frank</option>
<option value="Name ...
0
votes
1answer
44 views
Chained ajax Select Boxes
I have some problems with my html/php/ajax code about dependent (or chained) select. I want to show in my menu the list of faculties after I have decided the university.
I'll show you my (italian) ...
-3
votes
1answer
42 views
What's the jQuery equivalent to document.Formular.field_28.options.length?
I'm learning jQuery right now but I'm stuck on following task which I want to accomplish in jQuery:
function fill_Dropdown(i) {
i = parseInt(i);
var form1 = ...
0
votes
0answers
75 views
Display <Select> options in JSP from database Using Hibernate
I am using Spring, Hibernate and Struts2 for my Java web application. I have created DAOs, Services for Some tables in the database and I am able to process with that in my Action class. Now I want to ...
0
votes
0answers
25 views
html select not setting the selection
I must be doing this wrong, or missing something:
I dont understand why the selected property is not being set on the correct item in the select list.. You can use strings to set to value? as opposed ...
-2
votes
1answer
21 views
Crome not aligning select box options to left where select style is 'direction:rtl' [duplicate]
I asked the same question before also. That time my problem was to align the options to left in select. Here is the link for that question.
This is my JSP code
<select id="subjectArea" ...
0
votes
1answer
45 views
Change option values to link
I'm trying to make an option value list to change into a normal link. I'v read several posts here but I really can't figure this one out.
The original code with the select box is as follow:
...
0
votes
2answers
43 views
jquery + open hidden DIV by choosing option and send form value
I have apply form, working with jquery & php mail, but can't workout one last problem, here is select options:
<select name="LV01S01F001" id="LV01S01F001" class="selectform">`
<option ...
1
vote
1answer
45 views
Day select option not validating onsubmit
First of all I'm new to Javascript and html.
I'm having a issue with validating a modal popup enquiry form for required fields. I've managed to implement a enquiryFormValidation javascript function ...
0
votes
2answers
19 views
How to adjust Select drop-down height
I've looking round the internet for a solution to this and everyone is talking about different things or just saying does size="x" help? I've made a Plunk to illustrate my issue. On my screen I can ...
0
votes
3answers
154 views
Angular select with ng-option sends index instead of value when posting form
When I post a form with an Angular select, it sends the array index of the selected option, not its value. I need the string to be sent because the server doesn't know about these indices. How can I ...
2
votes
1answer
84 views
jQuery: Infinite scrolling Select Box
I am trying to make a better function of something I once answered here, however I'm running into a bit of a snag I don't quite understand. I wanted to be able to use "keydown" to allow a user to ...