jQuery Product Tour Plugin Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report jQuery Product Tour plugin is a lightweight, responsive guided tour plugin for users and programmers to help them understand the usage of a product or website with step-by-step instructions. It is a plugin for implementing a quick and easy help guide for the end-users. It helps in generating mobile-friendly customizable step-by-step guided tours for web applications. It provides a "free-trial" version of the web product for new users for gathering more knowledge about the product.Note: Please download the following library files from Product tour plugin and save it in your working folder to include in your codes. The programmers can change the path and CSS files as per the project requirements.Program: The following example demonstrates the basic working of the Product tour plugin developed using CSS and javascript code. The HTML page consists of an unordered list with list items. Each list item holds one step of the product tour guide along with the plugin's classes which control the attributes like title, description, images for mobiles, and the position of the tooltip of any step. html <!DOCTYPE html> <html lang="en" class="no-js"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="css/reset.css"> <link rel="stylesheet" href="css/style.css"> <script src="js/modernizr.js"></script> <title>jQuery Product tour plugin</title> <style> body { text-align: center; } .height { height: 10px; } </style> </head> <body background="images/geeksImage1.png"> <div class="height"></div><br /> <b>jQuery Product tour plugin</b> <div class="cd-nugget-info"> <h1>GeeksforGeeks Product Tour</h1> <button id="cd-tour-trigger" class="cd-btn"> Start GFG tour </button> </div> <ul class="cd-tour-wrapper"> <li class="cd-single-step"> <span>Step 1</span> <div class="cd-more-info bottom"> <h2><a href= "https://www.geeksforgeeks.org/write-from-home-challenge-technical-content-writing-event-by-geeksforgeeks/"> Write From Home Challenge </a> </h2> <p> When the whole nation is on the verge of lockdown due to COVID-19 pandemic and all Geeks across the country have to stay indoors, we at GeeksforGeeks won’t let this outbreak to decrease your productivity anyhow. And, with the same concern, GeeksforGeeks is coming up with the Write From Home Challenge for you! </p> <img src= "images/Participate-in-Write-From-Home-Challenge-By-GeeksforGeeks-1024x306.png" alt="step 1"> </div> </li> <!-- .cd-single-step --> <li class="cd-single-step"> <span>Step 2</span> <div class="cd-more-info top"> <h2><a href= "https://www.geeksforgeeks.org/dsa/must-do-coding-questions-for-companies-like-amazon-microsoft-adobe/"> Must Do Coding Questions </a> </h2> <p> As the placement season is back so are we to help you ace the interview. You can also take part in our mock placement contests which will help you learn different topics and practice at the same time, simulating the feeling of a real placement test environment. </p> <img src="images/gfg4.jpg" alt="step 2"> </div> </li> <!-- .cd-single-step --> <li class="cd-single-step"> <span>Step 3</span> <div class="cd-more-info right"> <h2><a href= "https://www.geeksforgeeks.org/artificial-intelligence/what-is-artificial-intelligence-as-a-service-aiaas-in-the-tech-industry/"> What is Artificial Intelligence </a> </h2> <p> Software as a service, Infrastructure as a service, Platform as a service, etc. are common services that everyone has heard of in the tech world. But what about Artificial Intelligence as a service?! Most companies these days use some sort of “as a service” to obtain services for a fee so that they can focus on their core business. But AIaaS is relatively new and its emergence is due to the rising popularity of Artificial Intelligence in the IT industry. </p> <img src= "images/What-is-Artificial-Intelligence-as-a-Service-AIaaS-in-the-Tech-Industry.png" alt="step 3"> </div> </li> <!-- .cd-single-step --> </ul> <!-- .cd-tour-wrapper --> <!-- used to create fake background app. --> <div class="cd-app-screen"></div> <div class="cd-cover-layer"></div> <script src="js/jquery-2.1.4.js"></script> <script src="js/jquery.mobile.min.js"></script> <!-- jQuery resource library --> <script src="js/main.js"></script> </body> </html> Output:Output for Mobile: Comment More infoAdvertise with us Next Article jQuery RowGrid Plugin G geetanjali16 Follow Improve Article Tags : Web Technologies JQuery jQuery-Plugin Similar Reads jQuery Page Piling Plugin jQuery pagePiling.js plug-in is a rich feature available for programmers for piling more than one layout section, one over the other, and accessing each page by URL or mouse scrolling or side bullets navigation. This feature provides all type of smooth vertical, horizontal, and side navigations to t 5 min read jQuery | Flickerplate Plugin jQuery provides Flickerplate plugin that helps our programmers to create sliders for websites that can cycle through a list of background images along with dot navigation feature and animated arrows. The plugin consists of many more libraries that are responsible for touch detections and events such 5 min read jQuery Multiscroll Plugin jQuery provides multiscroll.js plugin which helps programmers to create split web pages along with divided multiple vertical scrolling panels.Note: Please download the jQuery multiscroll plugin to your working folder and include the required files in the head section of your code as shown below. Dow 3 min read jQuery RowGrid Plugin jQuery provides a very simple, user-friendly and responsive rowGrid plugin that helps programmers to display images in a straight row. It is very lightweighted and supports infinite scrolling feature. Real examples of rowGrid are Google+ images or Google image search that appears in a straight row g 4 min read jQuery Alertify Plugin jQuery framework provides alertify.js plugin that provides pre-designed customizable notification system along with interactive browser dialogs. This extensible and themeable plugin is very useful for developers providing an optimized version of alert messages with stacking up to feature. This small 5 min read jQuery Image ProgressBars Plugin In this article, we will learn how to implement image ProgressBar feature using the jQuery Image ProgressBar plugin. Note: Please download the jQuery Image ProgressBar plugin in the working folder and include the required files in the head section of your HTML code. <link href=âprogressbar.cssâ r 2 min read jQuery DrawSVG Plugin SVG or Scalar Vector Graphics is Extended Markup Language-based graphics supporting 2 dimensional animations of images enhancing interactiveness. The specifications of SVG are open standards by World Wide Web Consortium defined in XML text files. These files can be changed or created with any drawin 4 min read jQuery Tagsort Plugin jQuery provides Tagsort plugin that is used for displaying tags or filter elements based on different tags in a DOM. The plugin takes data-attributes of HTML page structure and dynamically creates user-friendly tags used for filtering elements. The filtration of elements are done in many ways that a 9 min read jQuery Logos Distort Plugin The jQuery provides LogosDistort plugin which helps in creating or animating a parallax environment for 3D scenes in the user browser. It uses full-page matrix3D perspective logos distortions for transforming base on mouse movement. You have to download the required files in the working folder so th 4 min read jQuery Filer Plugin jQuery provides a quick jQuery Filer uploader plugin for easy implementation of uploading the files. It provides features like instant uploading of files, file append, file removal, multiple selections, drag and drop support along with other file validations.Download the required files to include it 2 min read Like