0
votes
0answers
18 views

Where to define Rails select/radio options and how to store

Where is the best place to define, and how should I store select/radio options for rails (and where to put translations)? Right now I am defining a Hash within the model and storing the integer keys ...
0
votes
0answers
14 views

select options script breaks when adding (Clear Radio)

I have a select that is supposed to clear selected radio option when a particular option from the select is chosen. Everything works fine twice and then it dies. I can't find what is wrong with the ...
0
votes
1answer
107 views

Reset values from jQuery Mobile

I need to reset all the values ​​of field elements of my page. The elements are: inputs, selects (combobox), checkbox and radio group. Searching found the following code: $("*").attr('value', ''); ...
4
votes
4answers
186 views

disable select form if radio is checked

How can I disable a select form dropdown if a radio button is selected? I would like the #preference form to be disabled if the user selects the #no radio button and it to be enabled again if the ...
-1
votes
1answer
82 views

IE8 Checkbox or Radios Select

Is there any way to run the radio or checkbox in Internet Explorer 8 I think the solution might be in jquery with some values ​​to emulate? :active :before :after Is example: ...
3
votes
3answers
324 views

Active radio button with jquery

I used all of the helpful answers on this site to try to build a jquery script to select radio buttons, but for some reason they don't work. Am I doing something wrong? For the sake of simplicity ...
0
votes
0answers
99 views

Custom form element plugin click issue in ie7 & ie8

http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons When I click the replaced radio or checkbox, it does it twice in IE 7 and 8. How to prevent that from happening?
0
votes
2answers
710 views

How to get the Selected index and value of a radio button inside an unorderd list using javascript

I have an unordered list that have a radio button, i want to get the id of the checked radio button Here's the html <ul class="class1"> <li> <label id="id1"> <input ...
0
votes
1answer
1k views

How to get value from dynamic radio button

I'm creating the 3 radio buttons in a private sub like such: For counter As Integer = 0 To rc - 1 'controller name Radio button and properties. Dim dynRadio As New RadioButton() ...
0
votes
3answers
385 views

codeigniter input fields with same name

sorry if its a stupid question but i need a bit of a help. I made a signup form, and i would like to people select 2 phone numbers. If i select hungarian a hungarian phone type input slides down, ...
0
votes
1answer
427 views

Javascript replace “other” value with input from text field

I have the following form that I am working on... When a user choses an option from a radio group a div is displayed with a multiple selection list. If one of those selections is "other" a text box ...
0
votes
2answers
584 views

Use jQuery with <select> option

I found a jQuery code which allows me to check id a certain radio/checkbox is checked, and then show something else based on the selection. Is there a way to do this with a <select> option? ...
1
vote
2answers
766 views

Django: Using Radio select box on model formsets

Hey, I'm using a model formset to let my users edit their photo album. I want to put a Radio select box on every photo saying "Set as cover image" so that I can process all the photos and find the one ...
0
votes
4answers
511 views

How to Set the Select List & Radio button Values by default

Dear All I am using jquery my html code <input type="radio" name="maritalstatus" id="maritalstatus" value="single"/> single <input type="radio" name="maritalstatus" id="maritalstatus" ...
3
votes
5answers
168 views

Greater area for radio selection

<span> <img src="img/icon.png" alt="" /> <label><input type="radio" name="" /> Label here</label> </span> I want the whole <span> to be clickable, not ...
4
votes
2answers
4k views

jQuery Convert Select to Radio buttons?

I am trying to convert select boxes to radio buttons on the fly using jquery, and I'm not sure the best way. Example HTML: <form id="product"> <select name="data[123]"> ...