Tag Archives — DOM
Add Remove, Toggle or Replace Class of an Element in JavaScript
Almost all website projects that we work on require us to change the classes of different HTML elements at one time or other. We can do this very easily using jQuery. However, using a library just to change or manipulate the classes of different DOM element is overkill. In this post, we will cover different […]
How Can I Check if an Element is Hidden or Visible with JavaScript?
Using JavaScript or jQuery to check if an element is hidden or not sounds very simple. However, there are lot of things that you need can determine the final outcome of such a check. For instance, everyone will have a doing criteria for determine if an element is hidden or visible. In some projects, an […]