Author Archives: Help_adm

Multiscroll.js

multiscroll.js is a jQuery plugin for creating split pages with two vertical scrolling panels. A Simple of multiscroll example as shown below <!DOCTYPE html> <html xmlns = “https://www.w3.org/1999/xhtml”> <head> <meta http-equiv = “Content-Type” content = “text/html; charset = utf-8” /> <title>multiscroll.js – split multi-scrolling pages plugin</title> <link rel = “stylesheet” type = “text/css” href =… Read More »

Flickerplate.js

Flickerplate is a jQuery plugin for creating a slider which allows you cycle through images with animated arrows and dots navigation. A Simple of flickerplate example as shown below − <!DOCTYPE html> <html> <head> <meta charset = “utf-8″> <meta name = “viewport” content = “width = device-width, initial-scale = 1.0, maximum-scale = 1.0, user-scalable =… Read More »

PagePiling.js

pagePiling.js is a jQuery plug-in for ‘piling’ your layout sections over one another and accessing them by scrolling. A Simple of theming example as shown below <!DOCTYPE html> <html xmlns = “https://www.w3.org/1999/xhtml”> <head> <meta http-equiv = “Content-Type” content = “text/html; charset = utf-8” /> <link rel = “stylesheet” type = “text/css” href = “https://fonts.googleapis.com/css?family=Lato:300,400,700” />… Read More »

Plugins in jQuery

A plug-in is piece of code written in a standard JavaScript file. These files provide useful jQuery methods which can be used along with jQuery library methods. There are plenty of jQuery plug-in available which you can download from repository link at https://jquery.com/plugins. How to use Plugins To make a plug-in’s methods available to us, we… Read More »

Utilities applied in jQuery

Jquery provides serveral utilities in the formate of $(name space). These methods are helpful to complete the programming tasks.a few of the utility methods are as show below. $.trim() $.trim() is used to Removes leading and trailing whitespace $.trim( ” lots of extra whitespace ” ); $.each() $.each() is used to Iterates over arrays and… Read More »

Theming

Jquery has two different styling themes as A And B.Each with different colors for buttons, bars, content blocks, and so on. The syntax of J query theming as shown below − <div data-role = “page” data-theme = “a|b”> A Simple of A theming Example as shown below <!DOCTYPE html> <html> <head> <meta name = “viewport”… Read More »

Widgets in jQuery

a jQuery UI widget is a specialized jQuery plug-in.Using plug-in, we can apply behaviours to the elements. However, plug-ins lack some built-in capabilities, such as a way to associate data with its elements, expose methods, merge options with defaults, and control the plug-in’s lifetime. Sr.No. Widgets & Description 1 Accordion Enable to collapse the content,… Read More »

Interactions in jQuery

Interactions could be added basic mouse-based behaviours to any element. Using with interactions, We can create sortable lists, resizeable elements, drag & drop behaviours.Interactions also make great building blocks for more complex widgets and applications. Sr.No. Interactions & Description 1 Enable drag able functionality on any DOM element. 2 Enable any DOM element to be… Read More »

Traversing Descendants

jQuery provides methods to traverse downwards inside the DOM tree to find descendant(s) of a given element. These methods can be used to find a child, grandchild, great-grandchild, and so on for a given element inside the DOM. There are following three methods to traverse downwards inside the DOM tree: children() – returns all the direct… Read More »

Traversing Ancestors

jQuery provides methods to traverse upwards inside the DOM tree to find ancestor(s) of a given element. These methods can be used to find a parent, grandparent, great-grandparent, and so on for a given element inside the DOM. There are following three methods to traverse upward inside the DOM tree: parent() – returns the direct parent… Read More »