I have a form with a list of things. The number of things in the list is variable, depending on certain factor, different things, different numbers of things. Next to each thing is a radio button.
There is a question with two radio buttons, "yes" and "no".
When "no" is selected, I want the radio buttons to be disabled, and the color of the text to change to gray.
For the radio buttons, I have a simple JS function:
javascript Code:
function enableCFFID()
{
document.cartform.cffid.disabled=false;
}
[Code].....
For the test that goes with each thing, obviously I don't want to have to assign unique ID (perhaps in a span tag that encloses the text). I would want a common name for all of them.
But this would mean I can't use getElementById.
What other method can I use to change the class for a group of span tags who's number is variable?
I have created the no.of div tags in my website applications. Now i want to change the class name of the tags. How should I? Below is some code which i want to change:-
I've been going out of my mind trying to get this to work, and now I'm out of time! It seems like it *SHOULD* be simple! All I am trying to do is get all of the <li> items that belong to a particular UL ID, and change the class name onmouseover. I've cut down the code to bare-bones to try and isolate the problem. I can get it to work if I use unique IDS for each list element, but that seems silly. The latest piece of code I am working with:
<script type="text/javascript"> var mylist=document.getElementById("mylist") for (i=0; i<mylist.childNodes.length; i++){ if (mylist.childNodes[i].nodeName=="LI") { mylist.onmouseover=function() {
I have a drop down menu with a few options of delivery method. One option is "other" and when a user selects other a new text box appears for them to specify. this is using javascript to change the css class of the div containing textbox. all this works fine and user can change between options resulting in textbox appearing when selected other and disappearing when selecting anything else. however if the user selects other and enters text into textbox then chages their mind and selects a new option the textbox will disappear but the value that was entered remains the same, i need to default when textbox is hidden to reset value.
When I hover over a row it changes to the color I am after just fine but I want it so that if I click a row, it stays that hover color.
Is thre an easy way to accomplish this using JS on it's own or even Jquery? So if I click on a table row, it is set to the same color as the hover state. if I click on another row, it removes the old one and highlights a new one?
I'm trying to make a webpage where you can change the colour of various elements within the page, which has numerous div classes in the css and numerous divs all with different names. What I'm trying to work out and can't find anywhere is can you change the properties of a css class using javascript, and if so, how?
how to change getElementById to a 'class' equivalent? This script works, however, I need to use it 3 times on a page but it uses ID instead of class. The two IDs that I wrap around the images that would scroll are: #marqueecontainer and #vmarquee.
I have several tags on a webpage of the same class. If the user clicks a specific checkbox I'd like to be able to alter the display property of the class, affecting all objects of that class.
This is an intranet application so we know that javascript will be enabled and the browser will be IE.
How can I affect all the members of this class? Is there a way I can toggle the DISPLAY property of a class so all the elements using that class would be affected? Code:
I have a website, two divs. The right div is fixed position.However when the user browser window, is less than the height of the div, i need it to be no longer fixed, but to scroll with the rest of the page.I imagine the logic to be the following:
-detect div#right height
-if window-height is less than div#right height. change div class to xxx
-if window-height is greater than div#right height. div class stays at yyy
(must update window-height everytime window is resized)
I am using 1.8.4 jquery tab portion. Currently when a tab is selected or hovered the classes change for the UL, OL tags. I would also like the A and span tags to change with the same values (ui-tabs-selected, ui-tabs-active and ui-tabs-hover).
I am using the standard template as below. I have gotten part of the way there but can't get all of the way there. I am guessing I need to change portions of the code from instances of searching for parent of A to do parent of A, A itself and children of A. Or I could find the first parent ul and say addclass, removeclass from all children.
I need to change the background-image (or possibly background-position) property of each new instance of a div with a particular class. I will have a set of images to choose from, or could create a sprite with all of the images.
is it possible to change the class of an element onClick with a fade? This is the code I have so far which works great for changing the class but I have no idea how to include a fade in this. I am changing the class in order to change the background-image of a div.
I'm in the process of working on a page that uses layers and iFrames in conjunction with javascript and <div> layers. The problem I'm hoping to solve with your help is that I implemented onclick="this.className='stylesheetstyle'" in the <a href> tag and so therefore when users click the links, the text becomes bold. However since I'm using multiple frames on a page, this makes it look odd when the user back tracks and clicks a different link in the frame. Is it possible using JavaScript to have a users input on click of link unbold the previously clicked link?In short:
Click link -> link goes bold move forward.... click another link (different frame) -> go forward
I'm not much of JavaScript coder and have little proper experiance coding it.
ANYWAYS, on the left hand side of a site im working on I have 3 absolute positioned div's which I control with JavaScript (code used from other source).
The links are 'band', 'item', 'release' and when I click on one of these links it will change the the divs to show the appropriate one. For example,
is used to change the div's. Now, what I want to do is when a link is clicked, change the background colour of the text for the currrent div showing. Am I making sense?
I thought it would be easier to just change the current class of the text. Is there an easy way to do this with JavaScript??