Add and Remove Classes using JavaScript is quite handy. Even it’s better to use a JavaScript framework or a library for such common tasks and I have mentioned the reason behind doing so at the end of article, these JavaScript code to adding and removing classes are worth considerable.
Tag » Class
Removing whitespace between HTML elements
Sometimes we get undesirable gap between HTML element that create unwanted behaviour of element as a result. Fortunately, removing whitespace between HTML elements is not so hard. In this article we will discuss about some solutions to remove the space.
The top three solutions are dedicated as answer of the particular issue I have specified in this article. Later I have provided some general solutions that fit with other tags and elements like inline-blocked elements.
Different CSS Shapes
This last part of CSS Shapes will tell you about Different CSS Shapes including Speech Bubble, Heart, Biohazard, Yin Yang, Infinity, Magnifying Glass and TV Shapes.
CSS Shapes – Chart and Ribbon
This fifth part of CSS Shapes series covers making Chart and Ribbon using CSS. The Chart is shown in Top, Right, Bottom, Left direction while Bookmark Ribbon and Badge Ribbon are two forms given of Ribbon.
CSS Shapes – Diamond and Star
Diamond and Star shapes can also be formed using CSS. This article will guide you to define CSS properties to create Diamond and Star
CSS Shapes – Square Rectangle Parallelogram Trapezoid and Polygons
We are covering how to create Square, Rectangle, Parallelogram, Trapezoid and Polygons Shapes using CSS here. It’s third part in this series of articles ‘CSS Shapes’.
CSS Shapes – Triangle
It’s the second part of CSS Shapes. In this tutorial we are discussing about drawing another CSS Shapes – Triangle. Triangles also can be used as arrow as per your requirements.
Add multiple classes in jQuery
Sometime we need to add multiple classes in jQuery. We can achieve it very simply by using jQuery addClass() method.
CSS Shapes – Circle
In this multi-part tutorial we will use CSS properties to draw various shapes like circles, triangles, rectangles, squares, polygon, stars, diamonds, charts and much more. In this first part we will start with CSS Shapes – Circle and various forms of circle.
Change Class using Jquery
The power of jQuery offers many features to web developers. jQuery has addClass(), removeClass() and toggleClass() methods to change class.
//Add a class $('#element').addClass('class_name'); //Remove a class $('#element').removeClass('class_name'); //Remove old class and add new class $('#element').removeClass('old_class').addClass('new_class'); //Or a short way to swap classes $("#element").toggleClass('old_class new_class');