JQuery :: Changing Class On Specific Module?

Sep 24, 2010

I've got a list of modules, and when I click on one of them it expands displaying the content. When you expand them, a little image on the right changes from a down arrow (v) to an up arrow (^), but it's changing on all of the modules rather than just the one.

Here is the website: [URL]

It's pretty obvious what my question is; how do I get it so the image only changes on the module that you expand?

Here's the code for the moduleToggle function:

function moduleToggle() {
$('.content').hide();
$('.title').click(function() {

[Code]....

View 3 Replies


ADVERTISEMENT

JQuery :: Select A Specific Class Inside A Specific Div Based On The ID From A Button Elsewhere On The Page

Mar 10, 2010

<div class="box top"></div>
<div class="box main">
<div class="box header">
<div class="badge"><ul><li class="active"><span>60</span></li></ul></div>

[Code]....

What is happening is $(this) is no longer based on .expand being the (this) that is clicked.

like if i have a button SOMEWHERE randomly on the page with this

<div onclick="Minimize('_alerts');">Click Here</div> this will minimize alerts but because the (this) in minimize function doesn't actually point to the right button that I want to add a class to.

Is there a way to modify the minimize function so that it finds the <div id="mytoggle"><ul> <li class="expand boxminimize" rel="_alerts"> using the rel toggle, and then changes the class of the li from expand boxminimize to boxexpanded??

just like the .expand click function I posted on the top of the post that works?

View 1 Replies View Related

Changing Css Class Of A Link On Click Withing Changing Original Code?

Jan 12, 2011

I currently have a normal link like Code:<a href="http://sitepoint.com" class="link">sitepoint</a> and when a user clicks on it I want to be able to change the "link" class to a different class. However, I don't want to add anything to the actual link html. Is it possible to do this using javascript without modifying the original link code?

View 4 Replies View Related

JQuery :: Accessing A Specific Class Within A Div Tag?

May 9, 2010

Suppose I have the following HTML code:

<div class="one">
<a href="http://jquery.com/">jQuery</a>
</div>
<div class="two">

[Code].....

Basically I want to recognize which <div> tag was double clicked, and hide the corresponding link that is nested within that specific <div> tag.

The only way I can think to do this currently is to basically copy and paste a whole bunch of jQuery code for each <div> tag and it's sub-elements (links in this case).

View 2 Replies View Related

JQuery :: Class Won't Be Added For A Specific Id

Jun 11, 2009

I'm a novice here, and I've got such a piece of code:

$(document).ready(function() {
$.each(includes, function(index, value) {
$('ul#menu-list').append('<li id="' + index + '"><a href="#">' + value + '</a></li>');

[Code]....

Basically, I load an html document on demand, through a menu populated with 'includes' values. Clicking on any item on the menu will load the appropriate document in the #content div and add an 'active' class to the menu item itself, to highlight it.

The loaded document optionally has inline links, that should load documents based on the same id's. Clicking on these inline links loads the appropriate document, but the 'active' class won't be added to the menu item having the same id of the inline link.

The thing I don't understand is that if I put (look at the line with arrows) any other value than 'id' (any valid integer or even 'id * 2') I get the desired result: a menu item having that id gets highlighted, a class being added to it.

View 3 Replies View Related

JQuery :: Getting Value Out Of A Table Cell With A Specific Class Name?

Jan 23, 2011

I have several table rows with the class name "recs", each containing a cell with the class name "data".Now I want to copy the text inside the table cell into a text box whenever I click on each row. For example if I click on the second table row, the name "David" would be copied in the textbox "name"

[Code]...

View 1 Replies View Related

JQuery :: Get A Specific Class From Several Classes On An Element?

Jan 10, 2011

I have a div with several classes on, like this:

<div class="class-one class-two special-class"></div>

I want to get the class that starts with 'special' and store it in a variable...but I am having trouble doing this...I can get as far as storing all of the classes in a variable:

var myClasses = $(this).attr('class');

...but I now need to extract just the one class that starts with 'special'...

View 4 Replies View Related

JQuery :: Get ID's Of Children Div's Of A Class With A Specific Parent Div ID?

Mar 8, 2011

I'm building a volunteer translation site. In order to constantly update only paragraphs that multiple translators are working on, I need to pass an array to PHP of A: which paragraphs are open, and B: which translations have been submitted and are visible on the user's screen. PHP will then compare this with what is in the database and tell jQuery to add new submitted translation paragraphs or remove deleted ones.I've managed to make a string of all the open Div's and have it updated every second, like this:

function cycle(){
var data = '';
$('.paragraphtobetranslated:visible').each(function(){

[code]....

View 2 Replies View Related

JQuery :: Simple Load Of Specific Class?

Dec 3, 2011

I'm trying to set up a simple load function to bring in some specific class content from pgB into pgA.Here's the code in html in pgA:

<div id="bext"></div>
<script type="text/javascript">
var $j = jQuery.noConflict();

[code].....

View 30 Replies View Related

JQuery :: Get The Class Starting By 'date' Of A Specific Element?

Jul 18, 2010

How is it possible to get the class starting by 'date' of a specific element?

e.g. <p class="hello date123 world"></p>

I would like to get the class date123

View 5 Replies View Related

JQuery :: Fade Out List Items That Don't Have A Specific Class?

Sep 23, 2010

I have a list of links in a sidebar, each with an associated class name. When one of these links are clicked, I want to fade out all of the main content list items that do NOT have this class (ie - if I click on boots, I want to fade out the list items heels and sandals)

[Code]...

View 4 Replies View Related

JQuery :: AddClass Fails When Targeting A Specific Class Instance?

Nov 17, 2011

I have a large number of "li"s with the same class - i.e;

<li class="month01Days"></li>
:
:

[code]....

View 1 Replies View Related

JQuery :: Blog Entry - How To Toggle Specific Class Element

Nov 6, 2010

On my website I have a lot of entries which are similar to blog-entries. Every single entry has about 500 signs and if there are more than there is supposed to be a button "read further"(atm there is no button but later it will be). If the user click this button, the remaining text of the entry is supposed to slide down. My problem is now that I don't know how to slide down just one article. Every article looks like this:

<article class="dark">
<div class="text"><h2>Title</h2> .....
<div class="slide_text"> .....
</div></div>
</article>

But how to slide down only the "slide_text" which belongs to the clicked article. If I use:
$('article').click(function() {
$('.slide_text').slideToggle(200);
});
Every singe "slide_text" of all the entries appears. But this is not, what I want. Is there a way to toggle just the child-slide_text of one entry? Or do I have to give every entry an id to define which entry is supposed to toggle?

View 1 Replies View Related

JQuery :: Changing A Class Dynamically ?

Apr 20, 2010

I have a template that will have tons of different background options. I want people looking at the demo to be able to test out each one without having to reload the page.

View 2 Replies View Related

JQuery :: Changing A Class Name Without Clicking?

Sep 24, 2009

I have the following: <div class="unselected" >content</div>

I want to change unselected into selected when calling a function. The ways I'm finding to do a class name change is using a clicking:

$('.unselected').click(function(){
$('.selected').attr('class','unselected');
$(this).attr('class','selected');
});

But I don't want to click, I need to do it by calling a function ..

View 6 Replies View Related

JQuery :: Changing Class Name Of DOM Siblings ?

Jul 25, 2011

I want to select DOM object id #combinerow1, then set all of that row's siblings' class name to "" (empty string)

Why isnt this code working?

[code]

firebug says invalid assignment left-hand side.

View 3 Replies View Related

JQuery :: Adding Specific Class For Loading Content Using Load() Not Working In Chrome/Safari?

Jun 24, 2010

I'm using a function to load a page into a div. When I add the class of the element I want to show (.contentpaneopen) Chrome and Safari show no content. It works OK in IE and FF.When I ommit the class it works on all browsers.

function loadContent(elementSelector, sourceUrl) {
//Works in Chrome en Safari:
$(""+elementSelector+"").load(""+sourceUrl+"");

[code]....

View 1 Replies View Related

JQuery :: Cycle Plugin: Changing A Class?

Dec 15, 2010

I am using the cycle plugin. I am cycling through 3 images. There are 3 corresponding divs below the images.I would like to change the background color of the div based on the corresponding image that is active.

[Code]...

View 1 Replies View Related

JQuery :: Few Improvements To Autocomplete Module

Sep 9, 2009

I have done a few improvements to the autocomplete module, to fix problems and improve functionality:

Added selectOnly option to autoselect a result if there's only one. This may save you a click. Moved the loading indicator to the left side, in case the field is rtl. Requires a small plugin I made, attached here. A css entry is being added to this effect. The included css file has this, but as opposed to the main autocomplete.css, colors are given as names.

Added substrings, and substringsSeparators. As opposed to multiple, which deals with a list of elements separated by a fixed string, substringSeparators is a string made of chars, that each and any of them provide a separator between autocompletable strings. It supports editing a program with a closed list of keywords, and operators and spaces as separators.

Added extraFields, a list of names or ids (if prefixed with #) of other fields to provide as fieldname=value params to the ajax query. In case names are provided, they are expected to be inputs in the same form as the input itself. More complex relationship may be found by adding suitable callbacks to extraParams, which I'd only ask to receive the $input and the key name as parameters.

View 1 Replies View Related

JQuery :: Make An Effect On A Module Of Page?

Jan 18, 2011

I'm kinda stuck with jQuery. I generally write code in PHP and do simple stuff with Javascript. But I need to make an effect on a module of my page.

[Code]...

Is this even possible? I don't want/can't preload random content and have it hidden. I could probably do this the simple way with js. Emptying the old content and replacing it with the new random content but I need the animation. I'll keep "decoding" the documentation while waiting for a response.

View 3 Replies View Related

JQuery :: Using :checked Selector To Control Another Module?

Sep 19, 2011

I have a question for using checked selector does not work well.Here is my code:

$("input").click(
function(event) {
var id = $(":checked").val();

[code]....

View 1 Replies View Related

AJAX :: Calling A Specific PHP Function Or Class?

Jul 2, 2009

Just getting my feet wet with AJAX and trying to figure out how I can make a javascript call to a specific PHP function in another file when I have a drop down menu change value using DOM. I've found lots of examples of how it could be done with GET variables, but none for this particular method of data retrieval. Has anyone ever ran into this, and if so, how did you solve this interesting deliema?

View 6 Replies View Related

Dom Scripting Get All List Element With A Specific Class Name?

Apr 25, 2010

I want my script to loop through all the list elements and when it sees a class name of "more services" an alert window should pop up. The alert is so I know i've done it right-which I haven't.

Currently my code looks like this.

Code:
<script type="text/javascript">
var serviceList = document.getElementsByTagName("li");
for (var i=0; i< serviceList.length; i++) {
if (serviceList[i].classname == "more-services"){

[Code]...

View 10 Replies View Related

Retrieve Name Attribute From Certain Elements With Specific Class

Oct 30, 2011

I am currently attempting to write a function that retrieves the name attribute from a list of items with a specific class name. To illustrate:
Code:
Show types of food:
<input type="radio" name="food" id="fruit" onclick="setVisibility('fruit')"/>
<label for="fruit">Fruit</label>
<input type="radio" name="food" id="vegetable" onclick="setVisibility('vegetable')"/>
<label for="vegetable">Vegetables</label>

<li class="art" name="fruit">pear</li>
<li class="art" name="vegetable">celery</li>
<li class="food" name="fruit">banana</li>
<li class="food" name="fruit">grapes</li>
<li class="food" name="fruit">orange</li>
<li class="art" name="fruit">grapes</li>
<li class="food" name="vegetable">lettuce</li>
<li class="food" name="fruit">apple</li>
<li class="food" name="vegetable">spinach</li>
<li class="food" name="vegetable">cabbage</li>

I would like create a function called setVisibility to iterate through all the list items where class=food and return the value of the name, so that I can compare that to the radio box, and set visibility accordingly.

View 3 Replies View Related

JQuery :: Changing Classes Of List Items Depending On The Amount Of Them And Current Class Name?

Mar 28, 2011

I'm trying to create a list that contains items which are filters for a search. The list shows 10 items (max) on the page load. if there are more than 10 it changes the class of the elements > 10 so they are hidden, and a 'show more' link is appended. Now if the user has 'unhidden' the previously hidden items and then chooses one, I want the class for all those previously hidden items to change until the user has deselected that item.

[Code]...

Is there a better, smaller way to write this? It works for what i need currently, but there are future features im planning that will not be practical checkingindividualindexes the way i've done it.

View 5 Replies View Related

Changing Class Of A Div?

Mar 13, 2009

I am trying to change the class of my DIV using CSS.

Here is the Javascript:

Code JavaScript:
<script type="text/javascript">
function.mouseOver()
{

[Code].....

View 8 Replies View Related







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