Tagged Questions
0
votes
1answer
25 views
jQuery and html Table
I have problem with jQery.
I wanna add in my table to last "td" text "yes" if radio selected "first", and "no" if selected "second".
Now is selected radio first. After click on button I can see in ...
1
vote
0answers
33 views
Setting active state of Twitter Bootstrap button radio group in ASP.NET
Does anyone know how I could set the 'active' button of the button radio group in Twitter Bootstrap?
I am using ASP.NET 4 and the latest version of Twitter Bootstrap. I have an ASP.NET UpdatePanel, ...
0
votes
1answer
21 views
Moz appearance for radio button shows radio still
I'm using -webkit-appearance and -moz-appearance so that I can style my radio buttons differently. When I do this in Chrome I get what I want:
When I use -moz-appearance for Firefox browsers, it ...
-1
votes
3answers
22 views
jQuery , show and hide divs based on radio button click [closed]
I have checked jQuery , show and hide divs based on radio button click , but my code still doesn't work. Basically the div tag will be hidden unless click the "package_1"
HTML is like this:
...
0
votes
1answer
29 views
jQuery forcing radio buttons to check wrong button
Im using jQuery to put the value from a radio button and input it into a field.
But the jQuery is forcing the last button to always be selected.
The radio input in Question is the 5th one down called ...
0
votes
1answer
29 views
Check a disabled radio button with jquery
I´m using JQUery Mobile 1.3.1 to check a disabled radio button (i.e. a radio button that cannot be clicked). Unfortunately, my method is not able to check the radio button a disabled radio button. I ...
0
votes
0answers
32 views
Setting radio button to selected in html5 jquery
I have searched Google and stack overflow to no avail on this question. I am trying to add the selected property to a radio button. This should not be a very hard task, but in fact it is proving to be ...
0
votes
2answers
56 views
If input:radio click checked radio
How do I detect when a radio button is checked?
HTML :
<label><input type="radio" name="test">One</label>
<label><input type="radio" name="test">Two</label>
I ...
0
votes
1answer
47 views
jQuery radio button value on first click returns undefined until selection changed
I could use some help with this code.
I have created a fiddle to show the issue - http://jsfiddle.net/r4hqC/
I am trying to read the value of 2 radio groups and then send their values via a GET ...
0
votes
3answers
45 views
Jquery Image Border on Radio Select
I am trying to tie an border image to appear when you select a radio box. Here is the code:
<table width="100%">
<tr>
<td><img ...
0
votes
0answers
143 views
jQuery input texts & multiple groups of radio buttons validation doesn't work completely
This code works for majority of its functionality but in one case: When the all required input text (except parent_2_something) and no radio button was checked (which is required, too), the form ...
1
vote
1answer
54 views
JQuery get radio input value and PRINT IT
I've been browsing for this for three hours now... and I found only how to GET the value from the radio input. But how do I print it?
Let's say I have this input form:
<form action="" ...
0
votes
6answers
68 views
Can't clear radio buttons
How can I clear these check boxes:
<form class="betMatch" id="4">
<table class="grid-info">
<tr>
<td><input type="radio" class="betMatchWin" id="49" ...
0
votes
1answer
271 views
JQuery radio buttons of same name and value - show hidden div when radio button clicked on | Ecwid
I am using Ecwid shopping cart and want to hide/show some options in a product based on if a radio button is checked.
My test product is here:
...
0
votes
4answers
261 views
how to select multiple radio buttons with different names with one label?
how to select multiple radio buttons with different names with one label?
here's a simple example of what i'm trying to achieve...
<input id="1A" type="radio" name="first" ...
1
vote
1answer
99 views
Getting Radio Button in Line With Dynamic Text Insertion
I am building a form consisting of radio buttons. I the test that is beside the radio buttons is dynamic, meaning that it is being loaded from an sql database based on user input from before. I am ...
1
vote
4answers
383 views
How to add/remove class to parent div according to input radio selection using jQuery?
the below code shows 4 radio buttons that are hidden by default using the display:none property in CSS. However, I select them using the "label" tag. I also have a div wrapping everything.
I want to ...
0
votes
2answers
186 views
Validate Input Radio for Jquery not working value checked
I have this HTML:
<div class="produtoListaDescTamanho">
<label class="textoPadrao pequeno laranja"><input type="radio" name="tamanho-324" value="9"><b>Frango Teriaky R$ ...
0
votes
2answers
54 views
Cant get values from different radio buttons groups
I want to know what am I missing. I have this radio inputs in a form:
<input type="radio" name="consulta" value="Ingreso">Ingreso
<input type="radio" name="consulta" ...
0
votes
1answer
473 views
Change Jquery AJAX post URL based on radio button
I currently have a product search box; you can search via Cartridge Name or Printer Name. Those are different SQL queries, so I have made the appropriate PHP files for the queries, but I am having ...
0
votes
1answer
53 views
radio + label hot to get correct values (array)
I'm trying to get correct values form labels (radio). When I click label, I'm getting value but when I click another one (label), I'm getting value from the first label and I need to click it once ...
4
votes
2answers
128 views
Next/Previous buttons for Radio
I'm trying to add "Next" & "Previous" buttons to a radio style navigation.
HTML
<div class="month-picker">
<button type="buton" class="month-picker-nav" ...
0
votes
1answer
87 views
Jquery - Setting text inside the closest span class after checking radio
I'm trying to add the value a user has checked from a radio and have it displayed in a span with the class 'user-set' with the corresponding header. The problem is when it displays the value, it ...
1
vote
3answers
163 views
Change DIV Background When Nearest Radio Checked
I have this already to make selecting the radio box easier
$("div.column43").click(function () {
$(this).find('input:radio').attr('checked', true);
});
I want the background/border of the div the ...
0
votes
6answers
122 views
When div is clicked, check corresponding radio input jquery
Here's my problem, I want an entire div to be click able, when clicked I need the radio button contained in the div to be checked, so the div acts as a radio itself. Here's what I thought I could use; ...
0
votes
3answers
74 views
Have a better way to hide and show divs with radio checked?
I created this code a few days, but I believe it is possible to improve it, someone could help me create a smarter way?
// Hide registered or customized field if not checked.
function ...
0
votes
2answers
83 views
jQuery: choose a proper radio-button
Here is the html code:
<div id="id1">
<input type="radio" name="sex" value="Male">Male</input>
<input type="radio" name="sex" value="Female">Female</input>
<input ...
0
votes
0answers
60 views
Is this a safe method for styling active state on a jquery radio button?
I found this answer: http://stackoverflow.com/a/4642152/1877124
but it didn't work until I referred to the div id instead of the class, like so:
#radioset input[type="radio"]:checked + label {
...
0
votes
2answers
445 views
jQuery show/close content when radio button selected
Hey I am looking for a very simply jQuery code that displays a hidden div when a certain radio button is selected, and hides that div if that radio button is "deselected".
I figured it out how to ...
0
votes
1answer
310 views
JQuery - Use dynamic images as radio buttons and more
I have little to none knowledge in JS and have to accomplish the following:
We use a third part module which enable images in options with magento. I can't modify the html structure of the ...
0
votes
1answer
189 views
Attach onclick event to struts radio button
I can't seem to attach an event to my struts radio button.
It's defined as:
<s:radio id="useCourseList"
name="useCourseList"
required="true"
label="Course List?"
...
1
vote
9answers
155 views
Get only unique names from more elements
I have dynamically rendered HTML that lists an undetermined number of radio buttons whose names represent some ids in a database.
I need to collect all of the unique names of the radios.
Here is an ...
2
votes
4answers
422 views
How to detect jQuery UI radio change event?
I have 2 radio controls:
<fieldset id="sort">
<label for="sort">Sort: </label>
<input class="sortDirection" type="radio" id="asc" ...
0
votes
4answers
640 views
Enabling combobox based on radio button selection
I have this radio buttons:
<input type="radio" name="type" id="pie" value="pie" />
<input type="radio" name="type" id="bar" value="bar" /><
<input type="radio" name="type" id="line" ...
0
votes
2answers
54 views
RemoveClass of other childeren in same parent div
I am trying to replace my radio circles by div's.
The selecting by clicking on the divs works.
The highlighting of the selected div works.
But how can i remove the "selected" class of the other ...
1
vote
1answer
751 views
How to use “checked=true” with Primefaces's SelectOneRadio?
I would like to use jQuery to change the checked status of the radio button of Primefaces.
But the only thing I am able to set is: disabled=false/true.
I think it is possible to do this with jQuery, ...
0
votes
1answer
112 views
Jquery detect radio group then validate
I've searched forums, google, and stack - no avail.
Basically, a client is generating radio buttons on our page, and we need to validate them. Each Radio group uses the same name (i.e TM_Offer_0056) ...
4
votes
4answers
192 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
vote
1answer
114 views
jQuery does not get the checked input when it is set true before the others are set false
I saw an interesting behavior of jQuery , and I dont know why, its not really a problem now, because I "fixed" it, but I want to share this with you, look at the code:
switch(id){
...
0
votes
0answers
112 views
Trigger jquery/image in HTML field, when clicking Radio Button
I have a set of radio buttons, all displayed as small selectable thumnails, as a part of Gravity Forms, working with Woocommerce.
I'm looking for a way, to trigger a larger image of these thumbnails ...
0
votes
2answers
375 views
disabling/enabling checkboxes with jQuery
I have trouble making my code work. I have two radio buttons : "Anywhere" "Somewhere" and two checkboxes "Author" "Reference"
If anywhere is selected, then the two checkboxes are disabled
If ...
2
votes
2answers
78 views
How to check dynamically with radio box is selected in the div
I need a dynamic function for checking whether a radio box is selected in the div or not.
Actually I want to show an error message every time an user, without selecting the radio button, presses the ...
0
votes
3answers
2k views
Disable/enable text field with radio button (jQuery)
thanks for the past help. I am asking you again.
I want to have 2 radio buttons, which will change the state (Enabled/Disabled) of a text input.
I managed to make it come from disabled to enabled, ...
0
votes
3answers
130 views
unchecking radio button is buggy
check out this fiddle: http://jsfiddle.net/5rmEe/
the goal is to uncheck the radio button when the user clicks it if it is checked and check it if it's not checked
but then it appears that the click ...
0
votes
4answers
200 views
jQuery submit(); not picking up value
I'm using image replacements for radio buttons by hiding the buttons and selecting them depending on what image is clicked.
When an image is clicked I want them to select a radio button, and then ...
0
votes
2answers
88 views
Form Validation Via Jquery
ı have to many radio group and you have to select at least 1 in each group. and ı dont want to use html "required".
ı wrote someting with jquery but it doesnt work.
ı just want to learn where ı do ...
0
votes
2answers
305 views
How to extend radio button clickable area to other elements using css or jquery
I have this html/smarty code for a radio button. I would like to extend the area for the selection of the radio button so that the user can more easily select it on this page?
The classic trick of ...
0
votes
1answer
203 views
Change image on radio checked using Jquery plugin Pikachoose
Okay so I have radio buttons to choose the colour of the t-shirt design and an image gallery showing what these look like:
...
2
votes
3answers
176 views
Selection panel - javascript radio button groups
I'm looking for a way to modify a page like this>
http://speckyboy.com/demo/digg-style-radio-buttons/index.html
so users can highlight one selection per row, IOW 8 radio button groups using a ...
3
votes
3answers
336 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 ...

