jQuery

toggleClass(), jQuery

The toggleClass(),  from jQuery adds or removes the specified class. In the example below, you'll see a practical application. Syntax: selecto…

removeAttr(), jQuery

Html Tags can have various Attributes.  You can use removeAttr() Method from jQuery to to remove one or more attributes . Syntax: $("Selector…

jQuery, class Selector

You create a Html Tag and with jQuery you can manipulate it. Syntax: $(".className").css(propertyName', 'propertyValue'); S…

jQuery, id Selector

You create an id for one or more HTML tags and with jQuery you can manipulate it. Syntax: $('#idName').css(propertyName', 'propert…

jQuery, Multiple Selectors

With jQuery you can specify more than one selector at once and manipulate them as you wish. Syntax : $('selector1, selector2,etc.').css(…

jQuery, Frist Steps

This tutorial and next ones assumes that you have a previous basic understanding of Html, JavaScript, CSS. In order to use jQuery you have to load …