A method to remove specific class(es) from a DOM element.
0
votes
3answers
21 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
32 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
40 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
23 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
34 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
40 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
28 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
44 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
13 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
33 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
52 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
44 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
26 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
26 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
28 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
3answers
43 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
60 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
174 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
87 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
188 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
119 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
28 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
77 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
27 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
65 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
44 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
91 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
76 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
75 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
87 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
120 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
28 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
22 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
53 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];
...
0
votes
2answers
107 views
C++ remove & replace in a vector
I have a vector of vector like this:
a: 0 1 0
b: 1 0 1
c: 0 1 1
This part of my programm works. After I want to delete the 0 so I use remove_if and I want to replace the 1 by t and the position ...
0
votes
1answer
59 views
Why use next() to add and remove a class multiple times?
I really want to know why it's important to use function(next) and next() in the following code. Without next() you can only remove the class .open-sidebar one time after you added it by clicking the ...
0
votes
0answers
124 views
Jquery add a class to a div when it's scroll position is at the bottom minus footer div height
I have a div #main .col1 which as i scroll needs to change position.
var header = $('#main .col1');
$(window).scroll(function () {
var resultsTop = $(this).scrollTop();
if(resultsTop >= ...
0
votes
2answers
57 views
Adding/removing classes with jquery
I am trying to change the font size of a webpage. I have specified three sizes:
Small
Medium
Large
Based on what the user clicks the html font size should become the size he chooses.
#small, ...
1
vote
5answers
174 views
Adding and removing classes from other divs after using jQuery fadeIn() in slideshow
I've made a slideshow using jQuery. It uses the fadeIn and fadeOut methods. This works fine.
What I need help with is adding a css class to another div, depending on which slide is shown. I've added ...
0
votes
2answers
190 views
Adding/Removing classes on table data onclick
I would like to add a class for a table cell that matches the hover color onclick or on select of the cell.
I have this javascript (that doesnt work currently):
$('#tblContainer').click(function() ...
0
votes
1answer
223 views
JQuery addclass and Remove class applying to for each variables not working
In my page I used jquery addclass and remove class functionality to add border for selected image. But the images are within for loop. So it is not working for me and I tried myself with various ...
1
vote
3answers
82 views
How Can I get my div to go back to its original background color on the second click?
I am using the jquery addClass and removeClass animate feature.
What I am doing is when the link is the clicked... the dropdown nav will appear... it is for a responsive site... but all that is ...
1
vote
2answers
120 views
Remove multiple classes from multiple elements with jquery
This $ code and and the animate.css linked in jsfiddle link adds animation effects to the boxes or images.
$('.box1').addClass('animated bounceInUp');
adds animated class and effect class.
...
0
votes
4answers
127 views
Java(Android): Find unused classes
In my Android application, I am using lot of open source JAVA libraries as source. It makes the application very huge in size.
Number of classes coming around 6000+. I want to remove the unused ...
0
votes
3answers
38 views
How to replace some class names with others and to show this changes specially?
<ul> has many <li> items which some part of them are highlighted and others are simple:
<ul class="news">
<li class="highlighted">Item 1</li>
<li ...
0
votes
2answers
50 views
.removeClass not functioning within .replaceWith
I'm trying to make a button that will hide a specific -- and then replace it with another hidden . However, when I test the code, everything fires correctly except for the .removeClass which contains ...
1
vote
0answers
76 views
Jquery cookie in Tabs: Keep or change class on previously active tab?
When I click on a tab, the class "defaulttab" is attached to active tab. But, when I refresh the page, the tab that I was last on loses that class, and the class defaults to the original tab. How can ...
0
votes
0answers
95 views
How can I use jQuery to remove a class from DataTables paginated pages?
That question is wordy, but let me explain:
I have a column in my DataTable table that I can edit (using jEditable).
I give that column the class jeditable (through the DataTables option) which ...
-2
votes
1answer
59 views
Remove class on click [closed]
I have a problem with removing classes with jquery.
I wanted to add and remove a class on click on the class but it doesn't work. Why?
$('.class').click(function() {
...







