JQuery :: Multiple Checkboxes Working Together?
Sep 17, 2010
I have 2 checkboxes that I want to slideDown/Up a div with. I can get 1 checkbox to do it perfectly fine...however, I can't seem to find any documentation or examples of doing it with two different checkboxes.It seems like there should an "if/then" or an "or" "and" type statement to make this happen but i'm extremely new to jquery and have no idea how the syntax is structured.Problem: Need two checkboxes to show same div... div needs to show even after one checkbox is unchecked after being checked itself.Code i've use to get one checkbox to do it: (chkframe = checkbox 1 id..... chkfound = checkbox 2 id)
$("#dropdown").css("display","none");
$("#chkframe").click(function () {
if ($("#chkframe").is(":checked")) {
[code]....
View 9 Replies
ADVERTISEMENT
May 26, 2010
In IE, The selector for multiple inputs is not working whereas in firefox it is. Below is the html.
<td><input id="contactInfo.shippingAddress.city" name="contactInfo.shippingAddress.city" onchange="needToConfirm = true;" type="text" value="city" maxlength="100"/></td>
<td ><input id="contactInfo.shippingAddress.state" name="contactInfo.shippingAddress.state"
[code]....
View 2 Replies
View Related
Jun 29, 2009
I have 30 groups of checkboxes and want to validate that the user select at least one checkbox from any group meaning if he selected one checkbox from the first group and nothing from the other 29 the form should be valid. I tried different solutions but none worked.
View 1 Replies
View Related
Feb 14, 2010
My platform PHP, MySQL. I am not very familiar with Javascript. I need to calculate value of each Checkbox List (Price) plus value from one TextBox (PrixBase) I have found this JQuery which works great in my case, but it make append two numbers instead calcul addition
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script language="JavaScript" type="text/javascript">
[code]....
View 5 Replies
View Related
Nov 24, 2009
I am working on improvements for a web app. It currently submits checkboxes to a php script for processing by simply submitting the form naturally. However I require this action using a ajax post to save bandwidth etc. and im struggling to work out how to do this. I am familiar with normal ajax posts using jquery but here I need to post an array.
Simplified a little this is what I have.
<input type="checkbox" name="ckdOrd[]" value="1" id="order_1" />
<input type="checkbox" name="ckdOrd[]" value="2" id="order_2" />
<input type="checkbox" name="ckdOrd[]" value="3" id="order_3" />
<input type="checkbox" name="ckdOrd[]" value="4" id="order_4" />
It used to build an array ckdOrd[] and post to a php script with a loop for processing. It needs to post the order numbers as an array for processing. Is there a way to simply create the same post using ajax jQuery?
The PHP simply does something like this
//get posted array
$ckdOrd=$_REQUEST['ckdOrd'];
foreach
$ckdOrd as $key => $ord_no {
//update mysql here
}
View 2 Replies
View Related
Apr 7, 2011
I have the following checkboxes:
[ ] None [ ] Option 1 [ ] Option 2 [ ] Option 3
When the first checkbox is checked (None), I need the other three checkboxes to:
1. Become unchecked if the user had checked them
2. Become disabled
If/when the first checkbox is unchecked after that, the other three checkboxes would become enabled.
View 4 Replies
View Related
Jul 18, 2011
I came across a problem with multiselect plugin(we have multiple options with checkboxes in drop down). If there are two absolute divs in different panels, when we open the multiselect, it hides behinds the second div. May be its because of the nature of z-index in IE.
View 1 Replies
View Related
Jul 29, 2011
someone here might know what I'm doing wrong. I have a list of checkboxes, in multiple rows with each along the lines of:
[Code]...
View 3 Replies
View Related
Jul 23, 2005
I have a page which is a set of CheckBoxes generated daily and thus the
number of Checkboxes changes each day.
What I want to do is allow the user to select one or more checkboxes and
the push a "Done" button and then have a script which uses a "for" loop
to check the status of each box. The code I use for this is
Sample checkbox HTML....
View 5 Replies
View Related
Jul 20, 2009
Hello...I assume this should be relatively simple but can't seem to figure it out and have searched all over the net.I have an .asp page that contains a form with multiple checkboxes for users to register for classes. When the classes fill up I want to be able to not allow them to register.
Right now I am doing the following:
function regclosed()
{
alert("Registration for this class has closed." + '
' + '
' + "Please select another class.");
this.checked=false;
}
Then for each checkbox I am using onclick = "regclosed()" The problem that I am having is that even though I only put the 'onclick' for certain checkboxes...as soon as I click a checkbox that has the regclosed() it clears every box that was checked - not just the one that has onclick="regclosed()"
View 11 Replies
View Related
Aug 4, 2001
I have a list of names with checkboxes in front of them. The list is generated from a database. So in a loop it would look something like this:
<input type=checkbox value='$userID' name='recipients[]'> $UserName
The name of the checkbox is a Array, because I want to pass the information on to another page, where the emails-addresses are used to send a mail.
the userID is also linked with the email-account of the user. What I want to do is to have a link, button or checkbox (which one is the easiest to implement) that checks all the checkboxes in the list at once. How do I go about this?
I have come up with the following, but this doesn't seem to work: PHP Code:
function CheckEm(cb_mail){
for (var i = 0; i < document.myForm[cb_mail].length; i++)
document.myForm[cb_mail][i].checked = true;
}
<input type=checkbox onClick="CheckEm('cb_mail')">
View 4 Replies
View Related
Dec 11, 2010
I am trying to sum the "value" of multiple checkboxes who's values are all numeric, and then alert via pop-up the value of the sum when a Sumbit button is clicked. I thought I figured out how to do it using some jquery, but for some reason the Submit button doesn't fire anything.
Heres the code.
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
[code]....
View 1 Replies
View Related
Dec 2, 2010
I'm having problems getting the values of selected checkboxes and outputting them to a textarea. This seems like quite a simple thing to do but its causing me a lot of bother! I am using a mixture of JavaScript and jQuery to find a solution to this.
<h2>Booking Form</h2>
<form name="booking">
Please choose the days that would suit your visit: <br/>
<input type="checkbox" name="days" value="Monday">Monday<br/>
<input type="checkbox" name="days" value="Tuesday">Tuesday<br/>
<input type="checkbox" name="days" value="Wednesday">Wednesday<br/>
[Code]...
View 10 Replies
View Related
Nov 1, 2007
I have a simple form which I'm trying to validate. I have around 8 checkboxes that the user has to agree with, and if they dont, they get the message saying "you did not accept the training princples, yada yada".
I also have a few text fields asking for their details.
Maybe I'm missing something simple here, but everytime I submit the form, it doesnt validate. Im not fantastic at coding, but I was hoping this would be quite straight forward. All I'm trying to do is get a message up if the user doesnt agree with all of the checkboxes. Code:
View 6 Replies
View Related
Feb 17, 2009
I have some checkboxes in a form that I'd like to validate (check to ensure that at least one has been ticked):
HTML Code:
<input type="checkbox" name="response[]" value="answer1" />answer1
<input type="checkbox" name="response[]" value="answer2" />answer2
<input type="checkbox" name="response[]" value="answer3" />answer3
<input type="checkbox" name="response[]" value="answer4" />answer4
The javascript below only works if I change my checkbox names to name="response" rather than name="response[]".
Code:
function validateform(){
var success = false;
for (i = 0; i < document.surveyform.response.length; i++){
if (document.surveyform.response[i].checked){
success = true;
}} return success;
}
I need to pass along multiple checkbox responses to my PHP script and therefore need to keep checkboxes named name="response[]". When I do this, I get the error "document.surveyform.response has no properties"
What change I can make to the javascript so that I can name my checkboxes name="responses[]" ?
View 2 Replies
View Related
Feb 27, 2009
Is there some neat JavaScript script to replace multiple checkboxes? Let's say there are too many checkboxes in a form (for instance, tags when creating an article) and they take too much space. I would like them to be compressed into some small scrolling box. Not sure I have explained it very well but it's too late already :P
View 2 Replies
View Related
Jul 20, 2005
I have a form that generates a dynamic number of rows from a value
passed in via querystring. I have a one static row in my form with a
"master" checkbox that I have deemed "Select All:". I want to be able
to select all and deselect all the other checkboxes beneath it in the
column by clicking on it. I've gotten it partially working. I can
click the "master" checkbox and it will set the .checked property of
all the others to true. BUT how do I reverse the process and turn them
all off? Here is my funcion: Code:
View 1 Replies
View Related
Oct 31, 2011
im trying to do a single html page with multiple checkboxes to hide/show text when checked/unchecked. I'm really bad at html but so far I have got this: The problem I have is I dont know how to add more checkboxes.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>101st</title>
[Code]....
View 2 Replies
View Related
Feb 14, 2010
My platform PHP, MySQL. I am not very familiar with Javascript.
I need to calculate value of each Checkbox List (Price) plus value from one TextBox (PrixBase)
I have found this JQuery which works great in my case, but it make append two numbers instead calcul addition
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script language="JavaScript" type="text/javascript">
<!--//--><![CDATA[//>
[Code]....
modify this code to make sum (all checkboxes + one textbox)
View 1 Replies
View Related
Sep 22, 2010
I'm currently trying to code a Adobe Acrobat roelplaying sheet but unfortunately I lack the know how. I want to feed text into a textbox if a checkbox or multiple checkboxes are selected. Example.
if (this.getField("CheckBox1").value=="True" {
Now this is where I get lost ..lol
textbox1 displays "Huzzah CheckBox1 is selected!".
I would then want to be able feed further information into textbox1, if say for example checkbox2 was then also selected it would add "Huzzah CheckBox2 is selected!" after the "Huzzah CheckBox1 is selected!".
View 3 Replies
View Related
Nov 15, 2010
I know how to do a select/deselect all function. Where I'm having issues is with a select some function. I am querying a database to come up with a list of companies. I then query the database to come up with individual names/email addresses associated with each company. (Individuals can appear under under multiple companies, and I need this to continue.) The checkbox name must remain the same from individual to individual.
What I want to happen: When I click on a name that appears multiple times, I want all related checkboxes to then be checked; also, if I uncheck one, all should then uncheck.
What I've been trying: Each record for John Doe has the same id name (not a must, but I thought this would make it easier. Though I don't think it is necessary, I am including a snippet below:
PHP Code:
<form name=form3>
<tr><td colspan=6>--Company A--</td>
</tr><tr>
<td width='3%'><input type=checkbox name=contact_sel id='contact206' value='jane.doe@company.com'></td>
<td width='30%'>Doe, Jane</td>
<td colspan=4> </td>
</tr><tr>
<td colspan=6>--Company B--</td>
</tr><tr>
<td width='3%'><input type=checkbox name=contact_sel id='contact118' value='john.doe@company.com'></td>
<td width='30%'>Doe, John</td>
<td width='3%'><input type=checkbox name=contact_sel id='contact33' value='mike.jones@company.com'></td>
<td width='30%'>Jones, Mike</td>
<td colspan=2> </td>
</tr><tr>
<td colspan=6>--Company C--</td>
</tr><tr>
<td width='3%'><input type=checkbox name=contact_sel id='contact118' value='john.doe@company.com'></td>
<td width='30%'>Doe, John</td>
<td width='3%'><input type=checkbox name=contact_sel id='contact206' value='jane.doe@company.com'></td>
<td width='30%'>Doe, Jane</td>
<td colspan=2> </td>
</tr></form>
Again, if I select/deselect someone from any Company, I want all of their related check boxes to follow suit. If there is a better use of id records, I'm all for it.
View 11 Replies
View Related
Jun 24, 2011
I have a large form that I would like it to check if there are any check boxes that are checked, if there are then open the divs attached to them. I have this working off of an onclick event but it's not working on load. This link is very close but only works off of one checkbox. http://www.sitepoint.com/forums/php-...sh-756260.htmlHere is the code that I am currently using:
HTML Code:
$('div[class^=opentoggle]').hide();
$('input[class^=toggle]').click(function() {
[code].....
View 4 Replies
View Related
Mar 29, 2011
This control function Button1_onclick() for checkboxes in the my form not working, why?
Code:
<HTML><HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<script language="javascript" type="text/javascript">
// <!CDATA[
function Button1_onclick() {
if (!controllo_check()){
alert("Stop");
return;
}document.forms[0].submit();
}function controllo_check(){
var cks = document.forms[0].chkParent;
var checked = false;
for(var i = 0; i < cks.length; i++){
if(cks[i].checked){
checked = true;
break;
}}
return checked;
} .....
View 2 Replies
View Related
Mar 31, 2006
Just wondering if anybody went through this before. The following code works fine in IE. It looks for checkboxes named market, although I use market[$id] for each checkbox. Code:
View 4 Replies
View Related
Mar 24, 2010
Multiple selectors not working
View 8 Replies
View Related
Feb 15, 2011
I added a jquery megamenu to my site, but now my thichbox script is not working correctly.trying to get it to work. I added a noconflict statement and changed $ to jQuery in my jquery.js file, but it is still not working correctly.
http:[url]....
--------------------------
<script type="text/javascript" src="http://homecomforts.com/js/jquery.js"></script>
<script type="text/javascript" src="http://homecomforts.com/js/thickbox.js"></script>
<script> [code]......
View 1 Replies
View Related