Jquery :: AddClass To List And SubList Not Working

Aug 2, 2009

How can I add class to a list and the sub-list...? I have tried the code below but it wont work...
Code:
$(document).ready(function(){
$("#menu li:last").addClass('last');
$("#menu li li:last").addClass('sublast');
});
This is the html code which I add the class 'last' and 'sublast' manually... the ideal situation I wish to achieve is to add these classes through jquery. Is it possible??

HTML Code:
<div id="menu">
<ul>
<li><a href="#">NEWS</a>
<ul>
<li><a href="#">News</a></li>
<li><a href="#">Opportunities</a></li>
<li class="sublast"><a href="#">Newsletters</a></li> .....

View 4 Replies


ADVERTISEMENT

Array To Populate HTML List With Sublist

Aug 14, 2011

I want to use arrays to populate an HTML list. I can populate the main list items but I can't seem to get the sub list items to work.
<HTML>
<Body>
<ul>
<script>
var pages = ["page1", "page2","page3"];
var subPages = ["sub1","sub2"];
for(var i = 0; i < pages.length; i++){
var page = pages[i];
document.write('<li>' + page + '</li>');
if (page == "page2"){
document.write('<ul>');
for(var i = 0; i < subPages.length; i++){
var subPage = subPages[i];
document.write('<li>' + subPage + '</li>');
} document.write('</ul'>);
}}
</script>
</ul>
</body>
</HTML>

View 29 Replies View Related

Jquery :: AddClass 'last' To A Series Of List

Nov 16, 2009

I have a menu like this and I want to add a class to each set of list as below, through jquery ideally.

this is my jquery code,

Code:
$("#menu_side > ul > li:last").addClass("last");

it only works in the last set of list... why is that? can I add the class to each set of list or it is just my html mark-ups incorrect?

Code:
<div id="menu_side" class="right">
<h2><a href="#"><img src="img_layout/bullet_expanded.png" title="bullet" alt="bullet" /></a> Comparative Areas</h2>
<ul>

[Code]....

View 2 Replies View Related

JQuery :: AddClass Not Working In Webkit - IE

Dec 7, 2010

I want to add a 'visited' class to a table cell and all of it's siblings if the link in the first td has been visited.

Here is my markup.

I've tried his:

And this:

And the class only gets added/appended to the table cells in FF, not webkit or IE and firebug tells me that the css is fine and would be applied if the class were present.

View 2 Replies View Related

JQuery :: Menu States/addClass, Not Working With Iframe?

Apr 6, 2010

I've got a problem. I've built a navigation page to be used in an iframe across a site. I've made menus like this in PHP and using arrays but I cannot use PHP here so I thought I could reproduce it in JQuery.

I am able to addClass "on" to selected menu items using the following:

<
script type=
"text/javascript"
>
$(
function

[Code]...

View 1 Replies View Related

JS In MooTools - Retrieve Some Elements From This CURRENT Sublist

Sep 21, 2011

I'm implementing the Sortable future from MooTools, currently, I'm tweaking it so I'll be able to use nested lists, just in the way I want it.

[Code]...

In this Sortables object, I need to retreive some elements from this CURRENT sublist. As you can see, for the moment I've placed a % sign, where normally an integer or another key would fit. In PHP, we know the function "current()" for this. But how do I fix this in JavaScript?

View 1 Replies View Related

JQuery :: List Menu Working In FF But Not IE

Apr 29, 2011

It's just a simple jquery pricing calculator. The problem is the original code given was for checkboxes only I suppose. I am wanting to use list/menu as well. The list menu works and adds the values fine in FF, but not in IE

[Code]...

View 4 Replies View Related

JQuery :: AddClass

Jun 1, 2011

.firstButton { background:url('../Images/leftCurve.png') bottom left no-repeat !important; }
.firstButton span { font-size:150px; }

There is a line like the following. $(afterButton).removeClass("firstButton").addClass("firstButton"); afterButton element is not null. But this object can not add a new class. Alert to look at the properties by the method of the object is added to a class. Why not work?

View 2 Replies View Related

JQuery :: Event.stopPropagation() Not Working In Unordered List?

Dec 13, 2010

I am working on creating a JQuery program that will take an unordered list and dynamically expand it using ajax calls. This is my code:

$(document).ready(function() {
$('.child').click(function(event) {
event.stopPropagation(); var uid = $(this).attr('id').substring(10);

[code]....

View 1 Replies View Related

JQuery :: Working With JSON - Add To An Unordered List On My Page

Nov 4, 2011

I'm recently reading through 'jQuery Fundamentals', and had a few questions about JSON.

I have the following JSON:

I wanted to , so I did:

Where weather corresponds to the JSON, and $ul, the unordered list element.

This works fine, however I'm unsure if this is the correct way of accessing that specific value in the JSON, as well as adding it to my page.

Does this mean that when manipulating a large piece of JSON, with many nested levels, you'll have to use many $.each's inside of $.each's?

View 2 Replies View Related

Jquery :: Cycle Through List Items Not Working Properly

Jul 1, 2009

I've been working with a little script from URL... but it doesn't seem to loop through the entire list.It works properly if I leave an empty list item in the UL - but that is not ideal.If i leave the count at 0, it leaves the final list item blank.

View 2 Replies View Related

JQuery :: Focus AddClass In IE?

Sep 20, 2009

the following works in FF but not in IE 6 nor IE 7

$('#msgsp').addClass('hidden');
$('#eventname').focus(
function() {
$(this).addClass('input_fields_focus');
}
);

that is IE the div #msgsp is not hidden and when focus on the input box #eventname the background color aint changed are there special methods/syntax for IE? are these methods intended to work in IE?

View 1 Replies View Related

JQuery :: IE Does Not Re-render After .addClass()?

Oct 19, 2010

I have a strange problem that occurs in IE 7 and 8 and does not occur in Firefox or Safari.I'm dynamically adding class to a table row on a checkbox selection. A row contains some input fields that get enabled or disabled. If a row is enabled, it gets highlighted using selectedrow class. If it gets disabled, the class is removed:

[Code]...

View 1 Replies View Related

JQuery :: Use AddClass With Variable?

Jul 20, 2011

I'm new using Jquery and I have a problem using addClass, removeClass.

This is the code that I have[code]...

View 7 Replies View Related

JQuery :: Adding Effects To AddClass?

Aug 2, 2009

I am trying to write a background image swapper, which I have got working. Ideally I would like to add a transition between the classes I am changing.

I am new to jquery, and I thought this would be a simple project to start on, but I just can't get the fade to work. see below for my code:

[Code]...

View 1 Replies View Related

JQuery :: Can't Make AddClass Work?

Mar 9, 2011

I have html code:

<div id="dropdown" class="rMenu">
<ul id="middlemenu" class="rMenu-hor rMenu">
<li><a href="page.html">Page</a></li>

[code]....

View 1 Replies View Related

JQuery :: Handy AddClass Use In .append?

Mar 6, 2010

$('body').append('<div id="mydiv"></div>).addClass('newClass');addClass can be used to add a class to a selector. Take the above example. If the class is added to 'mydiv' instead, not body, this could be handy than writing the two lines:$('body').append('<div id="mydiv"></div>);$('#mydiv').addClass('newClass');

View 4 Replies View Related

JQuery :: Date Is Expired AddClass?

Mar 8, 2011

How can I add an class to my <TR> when the date is expired?

[Code]...

View 3 Replies View Related

JQuery :: Using AddClass To Highlight Errors?

Sep 24, 2009

I have what I'm certain amounts to a CSS misunderstanding on my part. Here's the reduced problem:

CSS
input[type='text'], textarea {
background-color: #2c2c2c;
color: white; }

[Code]....

The problem: The addClass does not affect the styling of #title. Firebug shows .error, but as an empty selector. And, BTW, is this an appropriate way to flag errors -- by adding or removing a class?

View 2 Replies View Related

JQuery :: Selector Not Recognizing AddClass?

Apr 21, 2010

I'm trying to write a cinema seat selection page and I'm hitting a problem with a selector not recognising a 'booked' class that I've just been added via JSON. I wonder if anyone could tell me why it works ok when I hard code the 'booked' class in but not when I do it through jQuery. Should I just do it in PHP??? or is there a way around the problem.

[Code]...

View 2 Replies View Related

JQuery :: Using AddClass Function With Live

Feb 19, 2011

I am trying to use the .live() jQuery function in cooperation with the .addClass() function, but I am unsure of how exactly to pass the parameter of the class-to-be-added's name through the live() function to work with addClass().Here is an example of the jQuery I would be using: [code]

I would like to use addClass() in both instances in the code above in cooperation with live() while being able to pass the class's name through the live() function. I've searched around the web quite a bit, but none of my searches have resulted in an answer that fits my specific needs.

View 2 Replies View Related

JQuery :: Using IF Statement To Trigger AddClass()?

Dec 17, 2010

I want to add a class to a navigation button, based on the position of my sliding <ul>.

The addClass("not-active") works when the page first loads, but when the <div class="button next"> is clicked, the position changes, and so I want the evaluation of the if statement to change (and thus trigger the addClass("active"). That's not happening. (I realize this would give me both the active and not-active classes -- I'll deal with removeClass later.

HTML and jQuery is below:

<div id="wrap">
<div class="button prev">Previous</div>
<div id="slider">
<ul>

[Code]....

View 1 Replies View Related

JQuery AddClass To A Child Element?

Jul 2, 2009

I have the usual unordered list for a navigation menu with submenus...

html:

<ul>
<li><a href="#">Link 1</a></li>
<li>

[code].....

All of the links inside of the parent <li> have a border radius. But if the parent <li> has a child <ul>, I don't want the link to have a radius.I'm currently using this jQuery:

<script>
$("li").has("ul").addClass("sub-radius");
</script>

It works fine except it's targeting the <li>, but I need it to target the child <a> and remove its radius.

View 1 Replies View Related

Jquery :: AddClass With Id Equal To Parameter?

Jul 12, 2010

I am trying to set an li with a class based on a parameter from a function;here is my code

Code:
if (ISSUE_support == null) {
$('li #' + issue).addClass('highlight');

[code]....

View 2 Replies View Related

JQuery :: AddClass - White Space Shown Under LI

Aug 7, 2010

When addClass('choose') to li, there is always a white space right under it.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URl]">
<html xmlns="[URL]">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script type="text/javascript" src="demo_inc/jQuery.js"></script> .....

View 2 Replies View Related

JQuery :: AddClass And RemoveClass Works But Changes Are Not Seen By Functions?

Jul 3, 2010

I'm building a gallery and i have a couple of thumbnails. There is always 1 active thumbnail (opacity 100%) of the showing image and several inactive thumbnails (opacity 50%).

I've build some functions to catch clicks for those functions:

$(document).ready(function() {
$(".galleryinactivethumb").click(function(){
$(".galleryactivethumb").removeClass('galleryactivethumb').addClass('galleryinactivethumb');

[Code]....

View 2 Replies View Related







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