Tagged Questions
The addclass tag has no wiki summary.
11
votes
2answers
16k views
addID in jQuery?
Is there any selector available to add IDs like there is for adding a class - addClass()?
8
votes
3answers
74 views
Is there a particular reason why jQuery's addClass() is not right-trimming?
<div id="myDiv" class=" blueberry mango "></div>
If we use the .addClass()
$("#myDiv").addClass("carrot");
The class for myDiv is now "(no-space)blueberry mango(double-space)carrot"
...
4
votes
1answer
28 views
swich off others element with the same selectors and switch on the clicked one in jquery
I've a simple list of play button, such as
<a class="play" rel="video-1"></a>
<a class="play" rel="video-2"></a>
and when I click to one of these I wish to switch off ...
4
votes
4answers
116 views
Add classes to li tags in a ul list as an index
$().addClass to <li> tags in a <ul>
example:
<ul>
<li class="1"></li>
<li class="2"></li>
<li class="3"></li>
<li ...
4
votes
1answer
716 views
jQuery performance, .css or addClass
I have a big jQuery code and I am thinking at speed performance of my functions. When an element is clicked (mousedown) i need to assign an image as background. I can do this by 2 ways:
$('#element ...
3
votes
1answer
34 views
do jQuery .first() and .last() work differently?
So, i'm building a simple slideshow control with this markup:
<div class="previous"> </div>
<div class="next"> </div>
<div class="gallery"> </div>
<div ...
3
votes
5answers
124 views
jQuery add class based on html
This is my HTML structure.
<a href="www.example.com" rel="group-1" class="project">
<img src="http://www.example.com/image.png">
</a>
<div class="data">
<span ...
3
votes
2answers
1k views
delayed addclass/remove class function not working
what am I doing wroing here?
$(function() {
$('ul li:nth-child(1)').addClass("go").delay(4500).removeClass("go");
$('ul li:nth-child(2)').addClass("go").delay(1500).removeClass("go");
$('ul ...
3
votes
1answer
828 views
jQuery : Add class dynamically depending on the browser window resolution
Hello friends I am trying to add a class to body dynamically depending on the browser window resolution. Here is the code I am trying to use but need help tuning it as I dont know jQuery at all.
The ...
3
votes
8answers
2k views
jQuery - addClass or removeClass - Is there an append class?
I have css hover over images for my tabs and I'm trying to get the class to change from .how to .how_on when I click on the image HOW.
My tabs are
HOW | WHAT | WHEN | WHO | WHY
I have ...
3
votes
4answers
4k views
JQuery Find #ID, RemoveClass and AddClass
I have the following HTML
<div id="testID" class="test1">
<img id="testID2" class="test2" alt="" src="some-image.gif" />
</div>
I basically want to get to #testID2 and ...
3
votes
4answers
3k views
addClass using .live() with jQuery
I am currently using the .load() function to load content into a container div dynamically. The content being loaded is table data which I'd like to zebra stripe. The zebra striping is easy on a ...
3
votes
4answers
833 views
IE6 performance issues with adding className on multiple elements (jQuery tableHover plugin)
In an application I write that uses a large HTML table of numbers the design requires that the row and column of the hovered cell will be highlighted.
I develop all the JS for this project using ...
2
votes
5answers
43 views
jQuery click function acting strange when adding/removing classes
I have two list items that, when clicked, should change classes from '.off' to '.on'. Only one element should be '.on' at a time so when one is already turned on and the other is clicked both elements ...
2
votes
1answer
72 views
jQuery SVG, why can't I addClass?
I am using jQuery SVG. I can't add or remove a class to an object. Anyone know my mistake?
The SVG:
<rect class="jimmy" id="p5" x="200" y="200" width="100" height="100" />
The jQuery that ...
2
votes
3answers
62 views
jQuery not working in firefox and internet explorer
Alright, I have jQUery function which adds class to a div#float once div#floatLunch gets to the top of the page. It works fine in chrome, but doesn't work at all in mozila and IE.
Here is a fiddle: ...
2
votes
4answers
37 views
Select a group of elements and assign a class with jQuery
So what I'm trying to do is break a form into different sections, and show/hide using jQuery.
I have something like this:
I can't change this:
<div class="form_row"></div>
<div ...
2
votes
2answers
85 views
jQuery addClass() function in a Drupal site isn't working in IE7
I am trying to use jQuery in the context of a Drupal site. The script works fine in other browsers including IE8, but in IE7 it partially breaks down.
Sample script code:
function showEducation() {
...
2
votes
2answers
55 views
Check if class allready assigned before adding
In jQuery, is it recommended as best practice (or does have any effect at all), to check if a class is allready assigned to an element before adding it.
For example:
<label ...
2
votes
2answers
53 views
jQuery addClass or wrap in unlikely part of element
I really hate the way my shopping cart is set up as I CANNOT edit much of the pages. So I resort to using jQuery which is both fun and frustrating because we have to use so much of it. That being ...
2
votes
2answers
87 views
jQuery removeClass problem
I have a little bit of problem here:
I have the following js functions:
function setRounded(divId){
$(divId).addClass("rounded-corners");
}
function unsetRounded(divId){
...
2
votes
1answer
309 views
jQuery Detect iPad, change font-size of element
I need to change the font-size of some elements if the user is on the iPad because the iPad renders my navigation bar off screen (due to some unknown font enlargement on iPads).
Here is my current ...
2
votes
3answers
274 views
Dynamic Add/Remove Class Jquery
I am creating an autosuggest box that has a of suggestion returned to it, and I am trying to add/remove the class "searchsuggestinnerulhighlight" to individual links. Here is the dynamically returned ...
2
votes
5answers
386 views
JQuery addClass and removeClass problems
I have some code that when a user clicks on a link JQuery adds class 'selected' to that anchor. Then, so that not all links end up with 'selected' as the user clicks on different links, I tried ...
2
votes
2answers
105 views
if find a div with a class then change the body class
Hi I am very new to jquery and stuck in a basic thing. what i want is:
If there is a div with class inner-header then apply the class link-bg on body if there is no inner-header div the remove the ...
2
votes
3answers
744 views
Does addClass in JQuery override any existing css class based styles?
I'm trying to add a class to elements clicked on. The elements have several clases already assigned to them including one with a border.
Although I know I can remove a current CSS class using ...
2
votes
3answers
611 views
Remove all classes except one
Well, I know that with some jQuery actions, we can add a lot of classes to a particular div:
<div class="cleanstate"></div>
Let's say that with some clicks and other things, the div ...
2
votes
2answers
1k views
Why not work in IE addClass and removeClass
addClass removeClass, and I use to change the appearance of the checkbox but it has broken in IE and in FF, Opera, Chrome, everything works fine.
$('input:#chkbox').click(function()
{
...
2
votes
5answers
549 views
Trying to use jQuery's .addClass method with navigation
i have a Nav wherein i'm attempting to use jQuery's addClass method to set the link color of the last clicked link. problem is then i have to use removeClass on all other links in the Nav. that's what ...
2
votes
2answers
221 views
Super Difficult addClass Delay function w/ diff timed intervals
Total Novice here. I have some list items. I need to add a class of '.go' to each list item, one at a time, spaced out by pre-determined blocks of time. (each block of time will be different ...
2
votes
3answers
719 views
jquery: adding class on to list-items only on mouseover-remove on mouse-out?
hey guys,
what's the best way to do that:
i have a list
<ul>
<li>hello</li>
<li>good bye</li>
<li>arrivederci</li>
<li ...
2
votes
4answers
595 views
jQuery doesn't work on IE
I have the following jQuery script, which is actually being ignored by Internet Explorer (7 and 8). It works OK in FF and Chrome.
<script type="text/javascript" language="javascript">
...
2
votes
2answers
479 views
jquery removeClass, addClass issue
I have 2 styles:
.imagebox_empty{
padding:2px 2px 2px;
border:1px dotted #E5E5E5;
width:130px;
height:130px;
background:url('/images/misc/file_important.png') no-repeat;
}
...
2
votes
1answer
199 views
Alternate between classes added jQuery
I have a 3 div's, the jQuery script adds a class when a div is clicked:
.red{ background-color: red; }
What I would like to do is to modify the jQuery so that once time the .red class is added an ...
2
votes
3answers
203 views
When using jQuery.attr() to set an attribute the browser doesn't update the style from the css
I have a site hat lists a set of files that can be downloaded. The custom attribute docType is set based on the file extension. If there is no extension the docType is set to "unknownDoc". The CSS ...
2
votes
2answers
413 views
jQuery Class change not updating until mouse over
I have a menu and each menu item is a span with a class set in css:
.newClass {color: red}
.oldClass {color:black} oldClass:hover {color:blue;}
When you click on a menu item the class is changed ...
2
votes
4answers
155 views
Is there a way to automatically add classes in multi-level lists with jQuery?
I have a multi-level lists like this:
<ul>
<li>Item 1
<ul>
<li>Item 1's 1st Child
<ul>
<li>Item 1's 1st ...
2
votes
3answers
1k views
Find the longest element (jQuery)
I use this script to equalize heights of elements:
(function ($) {
$.fn.autoheight = function () {
var height = 0,
reset = $.browser.msie ? "1%" : "auto";
return ...
2
votes
3answers
168 views
div addClass only on ONE div
When i do something like :
$('#container').addClass("contract");
It only add class to the first div with id container
When i do something like :
$('.container').addClass("contract");
It adds ...
1
vote
0answers
46 views
better method for jquery for click and toggle multiple classes?
I have 2 links that I am toggling multiple classes, and then when you click on the other link, the classes are removed. Is there a better method? or a way to combine the click and toggle (shorthand)?
...
1
vote
1answer
44 views
CSS suppress screen like Javascript alert
So I have a hidden div that shows itself on $(document).ready() displaying a form to either log in or sign up. I'm trying to get the screen suppressed look as when a traditional Javascript alert is ...
1
vote
2answers
64 views
jquery invert class attribute on click
With this simple markup:
<a id="foo" class="first" href="#"></a>
I wish to obtain something like this:
$('#foo').click (function () {
if $('foo').hasClass('first') { ...
1
vote
2answers
36 views
JQuery adding class to cloned element
This is my script:
$('.addprop').click(function() {
$('#clone').clone().insertAfter('.addprop');
})
I need to add a class to the new element that is being created. Is it possible?
1
vote
4answers
47 views
.addClass based on a span wrapped in two tables
I'm trying to add a class to a table.
<table> > <tbody> > <tr> > <td> > <table> > <tbody> > <tr> > <td> > <span class="subcategory">
So ...
1
vote
2answers
89 views
Use addClass in jQuery to call a CSS class written in another file
I want to call a CSS class written in a CSS file from a JQuery function (external file too).
It doesn't work I wonder why :
jQuery :
/// <reference path="jquery-1.7.1.js" />
/// ...
1
vote
2answers
88 views
Jquery addClass / removeClass animation doesn't work with Background ?
i'm trying to make smooth animation during change class with Jquery.
But it works only with text-color, not background.
You can check this for detail :( :
http://jsbin.com/upufut
1
vote
1answer
34 views
Optimise jQuery .addClass on :nth-child(x)
I am looking for a way to optimise the following:
$('ul li:nth-child(12n-5)').addClass('bk');
$('ul li:nth-child(12n-4)').addClass('bk95');
$('ul li:nth-child(12n-3)').addClass('bk90');
$('ul ...
1
vote
2answers
51 views
Removing An Active Class From Mootools Tabs
I'm ploughing ahead in my attempts to learn Mootools (damn, I miss Consider Open's 30 days tutorials) and I'm trying to build a simple class switching script. I've found one on this very site that ...
1
vote
1answer
75 views
sub navigation div keeps hiding
I have a nasty navigation problem but can't seem to get it to work. When hovering over the <li> items in the mainnav div, according subnavigation shows.
But it won't stay in active class state ...
1
vote
3answers
110 views
jQuery addClass and removeClass onchange issue
I'm trying to get jQuery's addClass and removeClass to work in a form select environment with little success.
I want to modify the parent div's class and was trying to pass the ID in the function but ...