Tagged Questions
0
votes
2answers
580 views
Add radio button selection to database via ajax?
When I test my form it adds data successfully to my database table but the radio button selection is always "Ungrouped" which is the first radio button in the group. I tried giving them separate id's, ...
1
vote
1answer
126 views
Why does my radio button group not properly add to my database?
In my app I have an index page called Contacts.html. I have a form called newContactForm.php which I display on the Contacts.html page via an ajax function. When a user enters details into the form an ...
0
votes
1answer
461 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
0answers
14 views
Ajax Theme and Audio Player viewed in IOS
I have been racking my brains for 5 solid days trying to figure out an issue I am having.
First, on my site still in development, I am using a Wordpress plugin called AWS (Ajaxify my website) where I ...
1
vote
2answers
619 views
How do I pass HTML radio button value to a PHP variable using Javascript and Ajax?
I am trying to pass the user's checked HTML radio button value to a PHP variable using Jquery/Javascript and Ajax.
The following is a simplified version of the HTML/Javascript (without error ...
0
votes
0answers
133 views
how to create dynamic components with ajax listners in jsf
Hai any one help me plz... i want to create dynamic panel grid and wants to add components like combo box ,text field,radio button etc.. to it , here my code is..
panelGrid.setColumns(11);
...
0
votes
0answers
71 views
Radio buttons not passing values via AJAX
Does anyone know why the value of the selected checkbox is not being echoed?
Javascript code:
<script src="jquery.min.js" type="text/javascript"></script>
<script src="jquery.js" ...
0
votes
1answer
233 views
Radio Button State Not Updating
I'm currently putting together a form with various radio buttons who's state can be saved / recalled by jQuery / Ajax. The returned Ajax JSON data is looped through and sets the radio buttons ...
0
votes
2answers
353 views
Radio button to mysql with ajax validation
First off: I'm using the mail script made by Jeffrey Way on In the Woods.
I have a simple form, like so:
<form method="post" action="sendEmail.php" id="form_reserveren">
<div ...
1
vote
1answer
1k views
How to make radio button in ajax - php?
what's wrong with the code of radio button?
when i've tried SELECT/OPTION it's working.
im trying to make two groups of radio button, get their values and sum up.
but i cant move through since the ...
0
votes
0answers
160 views
variable radio button with ajax
I have a loop of multiple radio buttons in a php file-
for($j=1;$j<4;$j++)
{
$var[$j]=$randnum[$j];
$queryques="SELECT * FROM quesans WHERE q_id='$var[$j]'";
...
0
votes
1answer
197 views
How to add a drop-down element dynamically when a radio button is checked?
When I click the radio button, I want to display a drop-down list element dynamically in the same form. There is no button, only a radio button. I am looking for a solution using JavaScript and Ajax.
1
vote
2answers
507 views
Select a Radio Button in Ajax Response
I have an ajax response that replaces the contents in a div. The response is this:
<input onchange="switch(this.value)" value="val" id="code" checked="checked" type="radio" name="code" />
...
0
votes
1answer
335 views
AJAX RADIOBUTTON Not working
I have 3 radio buttons.
<input type="radio" name="length" value="1">
<input type="radio" name="length" value="2">
<input type="radio" name="length" value="3">
and im passing this ...
0
votes
2answers
161 views
how do i add the value from radio button for adding addcart
iam working with my new project.my question is how do i add the values from radio button for addcart. that is when i click the radio buttons that should add with addcart amount.i have a multiple radio ...
3
votes
5answers
825 views
HTML form radio value in an AJAX-loaded div
I'm unable to get a radio value in a form loaded by AJAX into a div.
Here is the JavaScript code I'm using:
(the radio name is 'categorie_add' in get function):
function getCheckedValue(radioObj) {
...
1
vote
1answer
189 views
script works, but the clicked radio isn't checked=checked jquery ajax POST
to see the error:
http://jsfiddle.net/sEdGz/2/
//the script works, but the clicked radio isn't checked=checked
//mysql and php works good
$('#form1').live("click change", function() { ....
...
