parseInt() Function, JavaScript You can use the parseInt(), Function from JavaScript to parse a string / variable or other value and get in return an integer. In the example belo…
JavaScript, match() Method The match(), Method from JavaScript it's used to find a match between a String or Regular Expression and a String and returns the matches, (could…
toggleClass(), jQuery The toggleClass(), from jQuery adds or removes the specified class. In the example below, you'll see a practical application. Syntax: selecto…
replace(), JavaScript Method The replace(), Method from JavaScript has various uses. In the example below, you'll see a practical application of this Method. Syntax: strin…
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, element / Html Tag Selector You create a Html Tag and with jQuery you can manipulate it. Syntax: $("element / Html TagName").css(propertyName', 'propertyVal…
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 …