Author Archives: Help_adm

jQuery Syntax

jQuery is used to select any HTML element from an HTML document and then perform any action on that selected element. To select an HTML element, jQuery selectors are used, we will study these selectors in detail in the next chapter. For now let’s have a look of basic jQuery Syntax to Find out or to Select… Read More »

Basics concept of jQuery

Before we start learning about jQuery Syntax, let’s have a quick look on basic concepts of Javascript. This is because, jQuery is a framework built using JavaScript capabilities. So while doing in jQuery, you can use all the functions and other capabilities available in JavaScript. So let’s quickly have a look at the most basic… Read More »

Overview about 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 jQuery simplifies various tasks of a progammer by writing less code. Here is the list of important… Read More »

Introduction of jQuery

This jQuery Tutorial has been prepared by well experienced front end programmers who are using Javascript and jQuery extensively in their projects. This tutorial has been developed for the jQuery beginners to help them understand the basics to advanced of jQuery Framework. After completing this tutorial, you will find yourself at a great level of… Read More »

Jquery

Introduction Overview Basics Syntax Selectors Events Attributes AJAX DOM Add Elements Remove Elements Replace Elements CSS Classes Dimensions CSS Properties Effects Animation Chaining Callback Functions Traversing Traversing Ancestors Traversing Descendants Interactions Widgets Theming Utilities Plugins PagePiling.js Flickerplate.js Multiscroll.js Slidebar.js Rowgrid.js Alertify.js Progressbar.js Slideshow.js Drawsvg.js Tagsort.js LogosDistort.js Filer.js Whatsnearby.js Checkout.js Blockrain.js Producttour.js Megadropdown.js Weather.js

PHP Zip File Functions

PHP Zip File Introduction The Zip files functions allows you to read ZIP files. Installation For the Zip file functions to work on your server, these libraries must be installed: The ZZIPlib library by Guido Draheim: Download the ZZIPlib library The Zip PELC extension: Download the Zip PELC extension Installation on Linux Systems PHP 5+:… Read More »

Category: PHP

PHP XML Parser Functions

PHP XML Parser Introduction The XML functions lets you parse, but not validate, XML documents. XML is a data format for standardized structured document exchange. More information on XML can be found in our XML Tutorial. This extension uses the Expat XML parser. Expat is an event-based parser, it views an XML document as a… Read More »

Category: PHP

PHP String Functions

PHP String Introduction The string functions allow you to manipulate strings. Installation The string functions are part of the PHP core. There is no installation needed to use these functions. PHP String Functions PHP: indicates the earliest version of PHP that supports the function. Function Description PHP addcslashes() Returns a string with backslashes in front… Read More »

Category: PHP

PHP SimpleXML Functions

PHP SimpleXML Introduction The SimpleXML functions lets you convert XML to an object. This object can be processed, like any other object, with normal property selectors and array iterators. Some of these functions requires the newest PHP build. Installation The SimpleXML functions are part of the PHP core. There is no installation needed to use… Read More »

Category: PHP

PHP MySQL Functions

PHP MySQL Introduction The MySQL functions allows you to access MySQL database servers. Installation For the MySQL functions to be available, you must compile PHP with MySQL support. For compiling, use –with-mysql=DIR (the optional DIR points to the MySQL directory). Note: For full functionality of MySQL versions greater than 4.1., use the MySQLi extension instead.… Read More »

Category: PHP