The addClass() method in java script adds one or more class names to the selected elements.
1
vote
1answer
30 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 ...
2
votes
1answer
22 views
toggle class to HTML within an iframe
I'm developing a site where I want to toggle a class on the html element within an iframe on that page. I'm currently doing this
if ($('html').hasClass('flexbox')) {
$('#flexbox').click(function ...
1
vote
4answers
37 views
jQuery: Add class to <tr> on mouseover in order to style <td>
I'm trying to append a class to a <tr> when mousing over (highlight), in which I will be styling the child <td>'s. Just adding the desired effect (background color) on the <tr> won't ...
0
votes
2answers
25 views
I have my Dynamic Page, how to add active class on current pages?
I have four php pages, homepage.inc.php, about.inc.php, contact.inc.php and heres my index.php
<div id="menu">
<nav>
<a id="home" target="_self" ...
0
votes
4answers
31 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
6answers
46 views
Adding class to clicked element
I'm trying to add a class to a clicked element. There are multiple elements with unique IDs so I "don't know" what the ID of the element is.
Can I use a modified version of the below code to achieve ...
0
votes
4answers
39 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: ...
-4
votes
3answers
36 views
Active & Inactive class add & remove
I need to add & remove class on click of anchor tag.
<div class="activeTab">
<a href="#." class="active">Active</a>
<a href="#.">Inactive</a>
</div>
...
0
votes
2answers
19 views
If category is 'x' add class
Morning all,
Just a quick question, within the loop I would like to check if an element has the category 'nolink' if so add class.
...
My code is below. I would like the jquery to remove the class ...
-1
votes
2answers
45 views
.addClass to only the bullet being clicked on in unordered list
I have a short unordered list with two bullets.
I added some Javascript, so that when I bullet is clicked on, it adds a class to it.
The problem is, it adds the class to all existing li's, not just ...
0
votes
2answers
27 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
35 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
1answer
69 views
.addClass() not working in JQuery function
I have numerous websites that are on a "dev" site meaning that it is dummy data and not all functionality works. What happens is that I have this function in my document.ready() that is supposed to ...
0
votes
3answers
50 views
Show loading icon before the execution of a function
I'm trying to show a loading icon before execution of function but I don't have a clue how to do this.
My code:
$(".chartType").on("click", function(event){
$("#wrapper").addClass("loading"); ...
1
vote
2answers
33 views
Backbone - toggleClass on hover
I am new to Backbone and understand the idea, but am having trouble properly writing a simple toggleClass function. My site is a grid of squares that when a square has the class "hover" some css ...
0
votes
2answers
49 views
addClass script not working on nav element
I'm using the following script to change the class of clicked 'nav' elements to an 'active' class in my navbar.
$('nav a').click(function(e) {
e.preventDefault();
$('nav ...
0
votes
3answers
43 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 = ...
0
votes
2answers
50 views
Append to a class attribute with jquery
I'm working on a multistep form with jquery and I'm trying to add classes to keep count of the formsteps that I have. Currently my Jquery is adding step-0, step-1 etc. classes to every .step class.
...
0
votes
1answer
68 views
addclass, removeclass not working when page loads initially on changepage
I have an app with 3 pages. Let's call them A, B and C.
I make an Ajax call to build the pages and change an icon depending on a flag (let's say flag1) and change page depending on flag2. Icon ...
0
votes
1answer
26 views
how to wrap each letter to tag “span” and add the same id
This is what i have now: DEMO
Need for each letter add ID same as letter in span...
like this:
<span id="t">t</span>
<span id="e">e</span>
<span id="s">s</span>
...
0
votes
2answers
31 views
jquery events effecting wrong elements
http://s199881165.onlinehome.us/transfem/sortable%20test/sortable2.php
So I am working on a video-site UI that has draggable / droppable / sortable (jquery) tiles that link to certain videos. As you ...
2
votes
1answer
55 views
Change class within timeout specific to clicked element
I've set up a jsFiddle here. But below is the code...
HTML
<div class="square square0"></div>
<div class="square square1"></div>
<div class="square ...
1
vote
1answer
113 views
jQuery addClass to menu items based on URL (WordPress persistant Network menu)
I am trying to setup a persistant Network-wide menu on a WordPress multi-site install. This was achieved using the Network wide menu plugin and works very well. The only issue is styling because the ...
1
vote
4answers
40 views
remove a a class and then hide it with jquery
the following code i have does not seem to work.
$("ul li a").live("click", function() {
$(".myMegaMenuDiv").addClass('hideit').delay(300).removeClass('hideit');
});
I have a mega menu, so ...
3
votes
3answers
100 views
Jquery If element has class which begins with x, then don't addClass
I'm a definite newbie, so apologies for rubbish coding!
I've written the following Jquery for a practice project I set myself:
When you click on the div, it has the class "in_answerbox1" added and a ...
0
votes
1answer
54 views
Apply addClass (pref randomly) to max 2 divs with the same class instead to all with the same class
I have the following function:
$(".schedule").each(function () {
var cls = this.className.match(/schedule-\d+/);
if (cls.length === 0) return;
var els = $(".schedule." + cls);
if ...
1
vote
2answers
49 views
jQuery addClass to parent and it's siblings
I am trying to apply a class to an element's parent and it's siblings. So far I have only been successful by applying two lines of jQuery which makes the end result apply in two stages looking pretty ...
0
votes
0answers
48 views
how do re add my id“…” to drag/drop images after moved?
Jquery Code
function itemInSpot(drag_item,spot)
{
var oldSpotItem = $(spot).find('img');
if(oldSpotItem.length>100) {
oldSpotItem.appendTo('#itembox4').draggable({ revert: 'invalid' });
}
var ...
1
vote
2answers
171 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 ...
1
vote
2answers
103 views
Add class to image onload - determine if landscape
I am trying to add a class to an image after determining if it is landscape or portrait. The problem I am having is that the class is being added to the img tag like this img.landscape which is ...
0
votes
4answers
116 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 , ...
0
votes
2answers
58 views
Need To Add A Class To Last List Item Element In Custom Wordpress Loop Function Prefer jQuery
If have a fairly complex function we are using to generate a custom loop of 3 most recent posts. I am simply trying to add a class to the last li element called "last" but not really getting it down. ...
0
votes
4answers
134 views
jQuery add class to href if link contains specific text
I have some dynamically populated links in a list on my site that link to files. Is it possible to use jQuery to see if the name of the file ends with .pdf and add a class to the href or similar if ...
1
vote
2answers
25 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 ...
1
vote
2answers
60 views
Add class to a li with jQuery
I am trying to add a class to a label of a <input type="radio" /> on the click event of the label with jQuery.
$(".gallery ul li input").each(function () {
$(this).click(function () {
...
3
votes
5answers
89 views
use jQuery to hide div with if statement and addClass
I have a div generated through a plugin that I want to hide when disabled=true. After reading through the posts on SO, I thought maybe I could use .attr to find the disabled=true and then addClass to ...
2
votes
1answer
62 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 ...
0
votes
1answer
28 views
Unable to add a class to an element with jQuery, can someone please assist?
For some reason I can't seem to add a class to my 'li' tag using jQuery, I've done this before but I've been stuck on this for over an hour and can't see what I'm doing wrong!?
Can anyone see a ...
0
votes
5answers
153 views
Change style onclick
I want to change a tag's style using class onclick (basically I want to change the class).
This is my HTML code:
<div class="menutext"><a href="#" ...
0
votes
1answer
32 views
How switch “mouseover - addClass” fields with fadetoggle?
Please help me!
I have two fields (field1, field2) that perform navigation functions
These fields toggles the other two fields through "AddClass"
I need to perform this operation in effect ...
1
vote
1answer
108 views
JQuery addClass SyntaxError: Unexpected token illegal
What's wrong with my JQuery code? In chromium browser, I get the "Uncaught SyntaxError: Unexpected token ILLEGAL" in using JQuery addClass. Thanks in advance.
<!DOCTYPE html>
<html>
...
0
votes
1answer
88 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');
...
...
0
votes
0answers
41 views
multidraggable not working on addclass
I'm trying to use this
<a href="https://github.com/someshwara/MultiDraggable">
multidraggable plug-in</a>
for jquery. I wan't to include another element to drag using addClass. It ...
2
votes
3answers
117 views
How do I add a class to inner HTML of a div using Javascript?
I'm trying to work around a seemingly impossible customization for Wordpress. Here is what <?php the_category();?> prints out:
<ul class="post-categories" >
<li>
<a ...
0
votes
3answers
72 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
86 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 ...
1
vote
2answers
46 views
jQuery .addclass on a checkbox
I'm trying to add a class to multiple elements in a form. Here is my jQuery code:
...
0
votes
0answers
63 views
jQuery Can't Figure out Remove Class - Add Class
Hoping someone can see the error(s) in my code.
Scenario: Check database to see if sname exists. If it does, return "Screen Name is Already Taken" else return "Screen Name is Available".
The result ...








