Hide Fields When Checkbox Clicked

May 24, 2010

I have put the following code into a sharepoint aspx page. So that when I change the value in a drop down box it runs a function (in this case it displays "Works").

<script language="javascript" type="text/javascript">
function getField(fieldType,fieldTitle) {
var docTags = document.getElementsByTagName(fieldType);
for (var i=0; i < docTags.length; i++) {
if (docTags[i].title == fieldTitle) {
return docTags[i]
}}}

function TestFunctionName() {
alert("Works");
}
getField('Select','DropDownBoxName').onchange = function() {TestFunctionName()};
</script>

What I'd like to be able to do as well is when a check box is changed or clicked on the same thing happens. I dont seem to be able to achieve it though. I've change the line...
getField('Select','DropDownBoxName').onchange = function() {TestFunctionName()};
to...
getField('Input','CheckBoxName').onchange = function() {TestFunctionName()};
and
getField('Input','CheckBoxName').onclick = function() {TestFunctionName()};

View 3 Replies


ADVERTISEMENT

Hide/unhide Multiple Form Fields With Checkbox?

Feb 15, 2011

I have a form with a shipping address area and a billing address area. Right now I have a checkbox that fills in the billing address information if its the same as shipping information. Instead of having that so the form isnt so long when people first look at it I would like for the billing address fields to be hidden when you first come onto the page, and only if the address's are different the person will click the check box and the billing address section will appear. I know this has to be done in javascript but I have never done it

View 14 Replies View Related

Show - Hide Form Fields Based On Checkbox State

Mar 4, 2010

I'm trying to get the two followup questions underneath the checkbox to show up only if someone places a check there, but for some reason the way I've got it set up now it's simply hiding the area I want to show up altogether, and the checkbox has no effect on it.

Rather than waste tons of space pasting it here, here's the pastebin: [url]

Alternatively here is the live version:[url]

I'd prefer to have the form collapse when the additional questions are hidden, though if i can get this working at all.

View 2 Replies View Related

JQuery :: When Checkbox Is Clicked Email Is Necessary And If Checkbox Is Not Clicked Email Is Not Necessary

Jul 6, 2011

When checkbox is clicked email is necessary and if checkbox is not clicked email is not necessary for submitting a button give me the code:

View 1 Replies View Related

Hide/unhide Fields Depending Upon Other Fields?

Apr 26, 2009

i have to hide/unhide some fields on basis of some other fields. i found this script on the web.i can't understand the function completely what is the if ( txt.match(id1) ) block doing ?? is there any other way of doing the same...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />

[Code]...

View 9 Replies View Related

JQuery :: Get The Id From A Checkbox That Has Been Clicked?

Apr 10, 2011

i can successfully bind click events to dynamically added checkboxes, butstuck on how to actually get the checkbox's id attribute out.

<
script
language
=

[Code]....

View 1 Replies View Related

Get Value Of A Checkbox When Check Box Is Clicked

Nov 13, 2009

I would like to get the id of a html check box when the client clicks it. I want to do this on the client side so i need to use java script. I want to be able to do this in both fire fox and ie window.event.srcElement works great for ie but not for firefox do not tell me to use Event.target for firefox because that does not work. At least it is not working for me anyway.

View 5 Replies View Related

Checkbox Do 2 Different Things After It Is Clicked?

Jun 13, 2010

Can a checkbox do 2 different things after it is clicked? Right now I am using this...

<input type="checkbox" onclick="processCheckbox(this);">
<input type="checkbox" onclick="activLink(this.checked)">

I don't want to have 2 checkboxes on my page, just 1 and get the same result.

View 2 Replies View Related

Always Get Value '20' No Matter Which Checkbox Clicked

Mar 8, 2010

After clicking the checkbox, I like to get the value of the checkbox submitted. Why the following page always get the value "20" for checkboxChoice and checkboxvalue no matter which checkbox I clicked?

View 11 Replies View Related

Add Fields When Link Clicked

Jun 26, 2007

What i want is when the user clicks on a link then another field is added so they can add another job. I want to keep it on the same page.

View 3 Replies View Related

Add Values In Textbox If Checkbox Clicked?

Oct 30, 2009

I have four checkboxes and one textbox. If I checked 3 checkboxes the value 3 will be shown in textbox.

View 1 Replies View Related

When Initial Check Box Is Clicked / Another Checkbox Will Appear

Dec 23, 2009

need help in making a check box list menu, wherein when initial check box is clicked another checkbox will appear.

View 6 Replies View Related

Display Text When Checkbox Clicked

Dec 26, 2009

how do you display a line or a sentence when you click the checkbox?:confused:

View 6 Replies View Related

Validate Textbox After Checkbox Clicked

Oct 31, 2011

I very new to JavaScript and I need to validate a text field after a checkbox has been clicked. This is part of a larger form validation. I am looking for the simplest and easy solution to this issue. I have seen a couple of other examples that are far too complicated for the my needs. The form is asking a user to identify a referral source. If the referral source is a website, it wants the user to provide a URL. To clarify, all it needs to do is verify that if the website checkbox is clicked then there is text in the corresponding textbox. Here's what i'am been trying to make work

[Code]...

View 5 Replies View Related

Showing/hiding A List When A Checkbox Is Clicked?

Apr 15, 2004

I have a form, what I want to happen is that a user clicks a checkbox and a list appears or is enabled so that the user can then select a option. Also when the checkbox is unchecked again, I want the list to disapear or become unabled and it's value set back to whatever was the default.

After a bit of looking around I thought I has done it, but no luck. Can anyone let me know whats going on here? Code:

View 6 Replies View Related

JQuery :: Toggle Checkbox When Parent Element Is Clicked

Aug 6, 2010

I have an <input type="checkbox"> whose immediate parent is an <a> tag. The <a> is significantly larger than the <input>.

I want the checkbox to toggle on/offwhether the <a> is clicked or the checkbox itself. I also wantto store the value of the checkbox after it changes.

This sounds simple butI'm having trouble with the event bubbling (as in, I don't understand it).

Here is my current code.

HTML:

View 4 Replies View Related

Adding And Removing A Div Class When A Checkbox Is Clicked/unclicked?

Aug 11, 2011

I have a lot of information on my site that is in multiple categories. I have a list of categories, each with its own checkbox. By default, all the information is displayed (therefore all the checkbox's are checked by default).When someone unchecks the box I want to hide the divs with that class, and when someone rechecks the box, they should reappear. Here is my code so far. It is hiding the div's fine, but they are not reappearing when user tics the checkbox again.

<script type="text/javascript">
function toggledisplay(category){
if(document.getElementById(category).checked){

[code]....

View 2 Replies View Related

Hide Div When Clicked Outside It?

Feb 24, 2009

Is there a way in which I can make a div go to display:none when you click outside it? Here's what I've already got:

<script language="javascript" type="text/javascript">
function displayDiv()
{
var dv = document.getElementById("test");

[code]....

View 3 Replies View Related

Populate Text Fields With Checkbox

Feb 2, 2011

I have a client who wants to automatically send coupons that are selected by the customer on this page. Now, this will be handled by a mailing list software but it was suggested by the support team that the input fields (labeled coupon#_#) could be populated by using Javascript. There are 3 coupons and here's how have them structured:

Code:
<div class="coupon1">
<hr />
<img src="images/logo-wow.png" width="188" height="81" />
<address>
1712 SW Railroad Ave (Highway 51)<br />
Hammond, LA 70403<br />
(985) 542-7969
[Code]...

View 5 Replies View Related

Use Continue Button To Determine Which Checkbox Was Clicked And Redirect To Correct Page?

Feb 24, 2011

I have several checkboxes in a switch statement like the one below:

How can I use a continue button to determine which checkbox was clicked and redirect me to the correct page?

View 2 Replies View Related

Show / Hide Dt When Dd Clicked

Oct 23, 2011

I'm trying to create a list of questions and answers, with the questions hidden on page load. They get hidden by this Javascript (to avoid breaking the site for those without JS):

Code:
function init() {
var dds = document.getElementById("qanda").getElementsByTagName("dd");
for (var ddid=0; ddid<dds.length; ddid++){

[Code]....

how I can go about displaying the <dd> tags again? I've tried Google, but not being familiar with Javascript terminology, haven't got very far!

View 4 Replies View Related

Menu Hide When Clicked Outside?

Oct 12, 2010

I would like to have a multiple onclick show/hide menu system with javascript. And theres one more thing I need is to hide my menu when someone clicks outside it.

So basically I have a hidden div layer and a link. And when someone clicks on it I want the hidden div layer to show. And on a second click I want it to be hidden again. But if the menu is displayed and someone clicks outside it then hide it again.

If that makes sens now I really would like to have a anwser on this I have searched on the internet like 20 times already and all those code sucks.

I do not want any body onclick examples and I don't want to use JQuery.

This is the code I have so far I hope someone could give me example with my code intergrated into it

HTML Code:
<a href="javascript:void(0);" onclick="NCG_toggle('option');">Panel</a>
<div id="option" style="display:none;">
<a href="">my test</a>

[Code]....

View 4 Replies View Related

Hide Button Once Clicked?

Dec 27, 2010

How can i hide a button when i click it?

View 10 Replies View Related

Validate Fields When A Dynamic Checkbox Is Selected

Oct 3, 2005

I am trying to make several fields in a HTML form validated, but only
when a dynamic checkbox is selected. I am not sure how to do this.

Here is a snippet of the dynamic checkbox code:
<%
Set RSLIST = Server.CreateObject("ADODB.Recordset")
SQLLIST = "SELECT * FROM Newsletters ORDER BY Newsletter_Name"
RSLIST.Open SQLLIST, Conn, 1, 3
%>
<%Do While Not RSLIST.EOF%>
<input type="checkbox" name="Newsletters"
value="<%=RSLIST("ID")%>"><%=RSLIST("Newsletter_Name")%>

I would like to make three fields (company, phone_work, license)
mandatory when one of the "ID" (i.e. ID 2) is checked.

View 1 Replies View Related

Activate Hidden Fields When Checkbox Is Checked?

Dec 28, 2009

i have 4 hidden fields in a form called "searchform"

<input type="hidden" name="forumchoice[]" value="1" checked />
<input type="hidden" name="forumchoice[]" value="2" checked />
<input type="hidden" name="forumchoice[]" value="3" checked />
<input type="hidden" name="forumchoice[]" value="4" checked />

Now here's what i want to do: i have two checkbox

<input onclick="??????????" type="checkbox" name="checkbox1" id="checkbox1"/>
<input onclick="??????????" type="checkbox" name="checkbox2" id="checkbox2"/>

- when checkbox1 is checked, i want to activate the hidden inputs 1 & 2. if it is unchecked, then desactivate hidden inputs 1&2

- when checkbox2 is checked, i want to activate the hidden inputs 3 & 4. if it is unchecked, then desactivate hidden inputs 3&4

View 3 Replies View Related

Disable Text Fields When Checkbox Is Checked

Sep 15, 2006

I want to disable three textareas when one checkbox is ticked. how would i go about doing this?

My code:

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved