What is JQuery? jQuery is a fast and concise JavaScript Library created by John Resig in 2006 with a nice motto − Write less, do more. jQuery simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery Features: DOM manipulation − The jQuery made it easy to select … Continue reading JQuery Introduction
Month: May 2015
What is Child Themes in WordPress Child themes build upon an existing theme, without modifying the original theme, so that if the theme ever gets updated, your modifications to the theme are safe, because you’ve created a new theme and the update will only change the original files. How To Create a Child … Continue reading WordPress Child Themes
What is Cookies? A cookie is a small text file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, the cookie is sent back to the server too. Cookies are used to store information about user, visited pages, poll results and etc. The main … Continue reading PHP Cookies
What is Regular Expressions? Regular expressions are a powerful tool for examining and modifying text. Regular expressions themselves, with a general pattern notation almost like a mini programming language, allow you to describe and parse text. They enable you to search for patterns within a string, extracting matches flexibly and precisely. They are also … Continue reading PHP Regular Expressions