A method to remove specific class(es) from a DOM element.
1
vote
3answers
35 views
How to target and remove class from a sibling element?
So if you click on the Red class it should remove the blue_on and green_on classes (if they are being used) form the Blue and Green buttons.
<div id="dashboard-menu">
<div id="red" ...
2
votes
5answers
45 views
Using jQuery to remove & add classes to buttons, the new class added won't work with it's click function
I have 2 buttons, click one will swap classes for both buttons. The classes are selected and unselected.
My CodePen:
http://codepen.io/leongaban/pen/iLBvs
For example: click the Login button will ...
0
votes
0answers
22 views
Tricky add,removeClass
I'm facing some tricky challange with an acordition menu.I have a colorpicker from who i pick colors.Everything is ok until now.My colorpicker creates a cookie that retain the color user chosed. I ...
0
votes
1answer
44 views
Removing a class then adding it back
I have a bunch of divs, and the goal is to give the most recently clicked div the active class. Only one div should have that class at a time. I tell it to remove that class from everything, then add ...
1
vote
1answer
30 views
toggleClass unique background
I have search and tried this, please help!
So here is what i have working perfectly so far.
http://jsfiddle.net/ANDXJ/88/
$('.product').hide();
$('#nav a').click(function(){
var idvar = ...
0
votes
2answers
15 views
removeClass from previous event.target
I am trying to add a class to a <li> element on a click event and then remove that class on the subsequent click of another element in the same <ul>. No problem adding the class but I've ...
0
votes
2answers
34 views
remove /add class on window resize jquery
I'm trying to use the following code to remove a class on window resize for a menu in a responsive theme, but it won't work.
(function() {
var $window = $(window),
$ul = $('ul.nav');
...
0
votes
2answers
40 views
How to remove class clicking inner div
I have two divs. When one is clicked, it opens and the other closes. I want to be able to close the div that is currently open by either clicking the other div or by clicking a "[x]". I've got the ...
0
votes
4answers
44 views
How to: Add/Remove Class on mouseOver/mouseOut - JQuery .hover?
Looking to change the border color on a box..
..when the user mouses over/out..
Here's the attempted code.. Needs Work!
JQuery:
<script>
$("result").hover(
function () {
...
0
votes
1answer
23 views
how to remove class with a link that created with jquery html function [duplicate]
I want that class remove from an element, when click on a link, that created with jquery html function
here is an example:
//script
$("#test").click(function(){
$("#body").html("<a ...
0
votes
0answers
11 views
A tag affecting another span tag without affecting all the a/span tags in the paragraph
I'm trying to affect the hover state of only ONE a tag and ONE span tag within the same paragraph without affecting the others. Since I'm going to end up having around 6 or 7 of these I'm not sure if ...
1
vote
1answer
35 views
addClass & removeClass to many divs - is there a smarter way than this?
I'm writing a page that has a list of links, and a list of logos. When I hover over a link (#chicken_link) that matches the corresponding logo or logos (.chicken_shops) the .chicken_shops div gets a ...
0
votes
0answers
24 views
Jquery Datepicker Remove .ui-state-highlight.ui-state-hover and ui-state-activ
Is it possible to remove .ui-state-active state in JQuery Datepicker from a specific date?
I don't want to change CSS for the active day.
I have tried with this solution, but it does not work:
...
-2
votes
2answers
24 views
How to remove class if the content of an element is equal to another Jquery
I have a problem on my script, i would like to know :
How to remove a class if the content of an element (such as div, img, etc) is equal to another content of another element (such as div, img, etc) ...
1
vote
2answers
39 views
How do i make one class be active at one time using JQuery?
Code:
var $anchors = $(".box_one, .box_two");
$(document).on('click', function (e) {
var $elem = $(e.target);
if ($elem.hasClass('box_one') || $elem.hasClass('box_one_active')) {
...
1
vote
2answers
47 views
On hover over any element – remove class from whatever element has that class
I have several anchor tags inside a container.
This jQuery snippet selects one of those anchor tags, and adds a class to them:
$("#container").find("a").eq(random).addClass("active");
I want ...
1
vote
1answer
64 views
add or remove class to div when scrolling page between anchors
I am developping a condition for my site, so that when i scroll my page to an anchor, the menu item corresponding to that anchor adds or removes a certain class.
My problem is that i can't make the ...
-1
votes
1answer
48 views
removeClass not working [closed]
Just a quick q regarding the jquery removeClass function.
I have a html list that goes as so:
<li class="selected" id="s-12312">
<li class="selected" id="s-12313">
<li ...
0
votes
1answer
58 views
JQuery Remove Options Where id != Other Selected Option
I think this is a simple syntax problem. I have a list of states and a list of cities. Once the user selects a state, I want to use Jquery to remove all options but those in the selected state.
...
0
votes
0answers
5 views
Removing a repetitive 'class' after a specific 'id'
I have html structure like the following:
<div id="main-content">
<div class="d01ad9fd" style="overflow:visible">
<span class="corners-top">
...
0
votes
4answers
41 views
Swap image classes on click of an a tag. jQuery
I am working with jQuery and attempting to swap an image Style on click. I am using .tabs for a multi-page form and would like to call an event to swap out an image class when that page is clicked. ...
0
votes
4answers
64 views
JQuery: Can't removeClass when iterating (.each()) over list items using .on('click')
I am using JQuery to iterate over a ul list, and by using the .on('click'...) I want to add a class to the currently clicked li while removing it from the previously selected li
jsFIDDLE here: ...
0
votes
2answers
40 views
Jquery: Append a Class on hover of a div and remove when not hover
I want to append a class to a div on hover of that div and remove that class when its not on hover. And when I hover on another div, again this class should be appended and removed when its not on ...
0
votes
0answers
82 views
JQuery: delay a toggleClass just when is adding
I built this code to change the div.myButton when I click on it. The code wants to allow a .toggleClass() on red-text class in #bar with the condition that this .toggleClass() must be delayed just ...
0
votes
2answers
24 views
Fade out and remove a <div>
How can I fade out the following?
It does also need to be removed completely, not just only alpha 0 but also display:none and visibility:hidden after the fade out.
FIDDLE: ...
0
votes
3answers
67 views
jQuery close button for toggleClass and slideToggle not working as expected
I have a simple slide toggle setup that I want to add a close button to, but it seems that removeClass() isn't working.
When clicking the close link, I want to return to the previous color (remove ...
0
votes
2answers
63 views
Remove class when an image is loaded
I have an image element looking like this:
<img class="heroStr border" id="pictureId_<?php echo $row['id']; ?>" src="images/no_img.png" title="<?php echo $row['name']; ?>" ...
0
votes
3answers
50 views
add and remove class to an id
When I click on the class show the 'id does not return the class hide
Can you help me?
Thanks
CSS
.hide{color: red}
.show{ color: green}
HTML
<div id="prova" class="hide">
prova
...
0
votes
2answers
42 views
on click on element add specific class not working with jquery
the scenarion is : there are 4 divs , one of them is selected once clicked , the selected one has a specific class
this the jquery code
$(".taskdiv").click(function(){
id = ...
-1
votes
2answers
33 views
jQuery - removeClass not working properly
I do not know how i can change the code, that the removeClass function can do his job. At the moment, this function is not working (i think so). The biggest problem is this:
When i am clicking menu ...
1
vote
0answers
33 views
Cufon.refresh() issue when used with removeClass event
I need some help.
I'm using Cufon for a custom font on a site I'm working on.
I applayed the Cufon font on the top links. So far everything is OK.
Here is my issue: As I'm making a responsive site, ...
0
votes
2answers
53 views
jQuery - removeClass 'current' when loading JPlayer
What am I missing here? I'm trying to remove the class "jp-playlist-current" from the href upon loading the page. I don't want ANY 'current' style when this page loads. I only want the 'current' ...
0
votes
5answers
71 views
How do I remove toggleClass on click and when any other element and white space is clicked?
I am using JQuery toggleClass to change the color of a button when it's clicked. When it's clicked again it should revert to the original color AND when the mouse is clicked anywhere else including ...
1
vote
3answers
351 views
jQuery: Wildcard class selector in removeClass
This code snippet works to remove an existing class, before adding a new one, when I specify it directly (ie, 'ratingBlock', 'ratingBlock1', 'ratingBlock2', etc.). But when I use a wildcard selector ...
0
votes
4answers
96 views
removing a class that contains a set of characters
Is there a way to remove a class that starts or contains a defined text string?
I have several classes for background color overides that start .bg
.bgwhite
.bgblue
.bgyellow
I've set up a little ...
1
vote
2answers
355 views
jQuery Add/Remove Current with Element Id
I'm trying to
1) apply "current" class to link (id="book") as default when the page is first loaded, and
2) when a link in the ul "submenu" is clicked, add "current" to its class and remove ...
0
votes
4answers
213 views
jQuery add remove class onclick to a div
I have created the code below, which successfully rotates an arrow, via the class rotate, on the first click.
But on the second click, i want the arrow to rotate back again. I have tried, using an ...
0
votes
0answers
38 views
jqueryui not working
I am trying to create a menu that on .removeClass will animate the display of sub-menu items.
When I mouse over and out of the main menu item,
ie:
$item.removeClass( 'cbp-hropen', 3000 , ...
-2
votes
2answers
89 views
removing class or element with id with jquery [duplicate]
I'm trying to remove a div from the page (preferably prevent it from loading at all) but for now i'm settling on removing it after the page loads.
i tried out these lines of codes here on jsfiddle ...
1
vote
2answers
37 views
How to go back to default styles / theme when using jQuery addClass/removeClass?
I have this fiddle: http://jsfiddle.net/UxVF9/
$('#theme1').click(function() {
$('.links a').removeClass().addClass('theme1');
});
How can I go back to the default colorful state (theme1) by ...
2
votes
1answer
78 views
jquery add numeric class to an element based on current class of another element
I have the following HTML
<ul id="tabs">
<li>1</li>
<li>2</li>
<li>etc...</li>
</ul>
And the following jquery function I am using to ...
-3
votes
3answers
46 views
jQuery removed all elements?
I have this function
$("tr#phaseRow"+data[2]).remove();
How can I test if I removed all elements tr?
0
votes
1answer
128 views
jQuery add/remove Class with fadeIn/Out
I would to apply a fadeIn effect to a addClass function..and fadeOut to removeClass...
Can you help me?
This is my code
$('#loader'+idTurno).addClass('loader');
...
...
1
vote
2answers
100 views
Remove element of specific class from list in R
I expect there is a simple way to do this but after searching couldn't find an answer. I have a list and want to remove elements of a specific class.
For example say I have the list
tempList <- ...
0
votes
3answers
108 views
How to animate JQuery addClass/removeClass functions?
I want to know how to animate JQuery addClass/removeClass functions?
for animate function, it seems that I have to put some CSS properties, but what about if I have a class which makes element ...
0
votes
1answer
94 views
Why is addClass and removeClass breaking my jQuery?
$('.selected').removeClass('selected');
$(this).addClass('selected');
Before adding the 2 lines of code above, the whole function worked. Now only those two lines work when I click and the rest of ...
0
votes
3answers
160 views
jQuery Event-Handler changes CSS-Class with a shift of one click
I have some kind of strange behaviour using jQuery's Click-Function. I also tried it with the on-EventHandler. There is some simple markup from Twitter's Bootstrap Navbar and I'm trying to change the ...
0
votes
0answers
32 views
Jquery delay and queue not working
I am trying to switch between 3 classes (square,ball and triangle) and to create a delay of 800ms between each change. I know how to achieve it with timeout function, but I would prefer to write it ...
0
votes
0answers
28 views
how to remove ui-state-highlight class from the jquery ui inline datepicker
I'd like to remove "ui-state-highlight" class from the inline jquery UI datepicker. How do I do this, using the removeClass doesn't seem to help.
0
votes
1answer
63 views
JQuery removeClass function not working on a child element
Very simple question. Why is this not working:
$('.box').click(function() {
//$(this).removeClass('nw_hidden'); //this works
var el = $(this).find('.nw_div')[0];
...








