Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • jQuery Mobile
  • jQuery jQwidget
  • jQuery EasyUI
  • jQuery UI
  • jQuery
  • JavaScript
  • Web Technology
Open In App
Next Article:
EasyUI jQuery tabs Widget
Next article icon

EasyUI jQuery panel widget

Last Updated : 31 Mar, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers.

In this article, we will learn how to design panels using jQuery EasyUI. The Panel is used as a container for other contents. It is the base component for building other components such as layout, tabs, accordion, etc.

Downloads for EasyUI for jQuery:

https://www.jeasyui.com/download/index.php

Syntax:

<div class="panel">  </div>

Properties:

  • id: The id attribute of this panel.
  • title: The title text to display in panel header.
  • iconCls: A CSS class to display a 16x16 icon in the panel.
  • width: It sets the panel width.
  • height: It sets the panel height.
  • left: It sets the panel left position.
  • top: It sets the panel top position.
  • cls: It add a CSS class to the panel.
  • headerCls:  It adds a CSS class to the panel header.
  • bodyCls: It adds a CSS class to the panel body.
  • style: It adds a custom specification style to the panel.
  • fit: When it is set to true, the panel size fits its parent container.
  • border: It shows a panel border.
  • doSize: If set to true, the panel will be resized.
  • noheader: If set to true, the panel header will not be created.
  • content: It sets the panel body content.
  • halign: It sets the panel header alignment.
  • titleDirection: It sets the header title direction.
  • collapsible: If it is set, it shows the collapsible button.
  • minimizable: If it is set, it shows a minimizable button.
  • maximizable: If it is set, it shows a maximizable button.
  • closable: If it is set, it shows a closable button.
  • header: It sets the panel header.
  • footer: It sets the panel footer.
  • openAnimation: It sets the opening animation.
  • openDuration: It sets the opening duration.
  • closeAnimation: It sets the closing animation.
  • closeDuration: It sets the closing duration.
  • collapsed: If it is set, the panel is collapsed at initialization.
  • minimized: If it is set, the panel is minimized at initialization.
  • maximized: If it is set, the panel is maximized at initialization.
  • closed:  If it is set, the panel is closed at initialization.
  • href: A URL to load remote data and then display in the panel.
  • cache: It is set to true, it caches the panel content that loaded from href.
  • loadingMessage: When the remote data is loaded, it shows a message in the panel.
  • method: The HTTP method loads the content page.
  • queryParams: It sets the additional parameters that will be sent when loading a content page.
  • loader: It defines how to load the content page from the remote server.

Events:

  • onBeforeLoad: It fires before loading a content page, returns false to ignore this action.
  • onLoad: It fires when remote data is loaded.
  • onLoadError: It fires when some errors occur to load the content page.
  • onBeforeOpen: It fires before the panel is opened.
  • onOpen: It fires after a panel is opened.
  • onBeforeClose: It fires before a panel is closed
  • onClose: It fires after a panel is closed.
  • onBeforeDestroy: It fires before a panel is destroyed.
  • onDestroy: It fires after a panel is destroyed.
  • onBeforeCollapse: It fires before a panel is collapsed.
  • onCollapse: It fires after a panel is collapsed.
  • onBeforeExpand: It fires before the panel is expanded.
  • onExpand:  It fires after the panel is expanded.
  • onResize:  It fires after the panel is resized.
  • onMove: It fires after the panel is moved.
  • onMaximize: It fires after the window has been maximized.
  • onRestore: It fires after the window has been restored to its original size.
  • onMinimize: It fires after the window has been minimized.

Methods:

  • options: It returns options property.
  • panel: It returns the outer panel object.
  • header:It returns the panel header object.
  • footer: It returns the panel footer object.
  • body: It returns the panel body object.
  • setTitle: Set the title text of the header.
  • open: When open parameter set to true
  • close: When forceClose parameter set to true, the panel is closed.
  • destroy: When forceDestroy parameter set to true, the panel is destroyed .
  • clear: Clear the panel content.
  • refresh: Refresh the panel to load remote data.
  • resize: Set panel size and do the layout.
  • doLayout: Set the sizes of child components within the panel.
  • move: Move the panel to a new position.
  • maximize: Fits the panel within its container.
  • minimize: Minimizing the panel.
  • restore: Restores the maximized panel back to its original size and position.
  • collapse: Collapses the panel body.
  • expand: Expand the panel body.

CDN Link: First, add jQuery Easy UI scripts needed for your project.

<script type="text/javascript" src="jquery.min.js"></script> <!--jQuery libraries of EasyUI --> <script type="text/javascript" src="jquery.easyui.min.js"> </script> <!--jQuery library of EasyUI Mobile --> <script type="text/javascript" src="jquery.easyui.mobile.js">  </script>

Example:

HTML
<!doctype html>  <html>   <head>      <meta charset="UTF-8">      <meta name="viewport" content="initial-scale=1.0,          maximum-scale=1.0, user-scalable=no">                   <!-- EasyUI specific stylesheets-->     <link rel="stylesheet" type="text/css"         href="themes/metro/easyui.css">       <link rel="stylesheet" type="text/css"         href="themes/mobile.css">       <link rel="stylesheet" type="text/css"         href="themes/icon.css">       <!--jQuery library -->     <script type="text/javascript" src="jquery.min.js">      </script>       <!--jQuery libraries of EasyUI -->     <script type="text/javascript"         src="jquery.easyui.min.js">      </script>           <!--jQuery library of EasyUI Mobile -->     <script type="text/javascript"         src="jquery.easyui.mobile.js">      </script>    </head>   <body>          <h1>GeeksforGeeks</h1>     <h3>how to make a basic panel using jQuery UI?</h3>     <div id="p" class="easyui-panel" title="gfg"           style="width:400px;height:200px;padding:3px">     <p>geeks</p>     <p>geeks2</p>  </div>  </body> </html> 

Output:

Basic panel

Reference: http://www.jeasyui.com/documentation/


Next Article
EasyUI jQuery tabs Widget
author
taran910
Improve
Article Tags :
  • Web Technologies
  • HTML
  • JQuery
  • EasyUI
  • EasyUI-Layout

Similar Reads

  • jQuery EasyUI
    EasyUI jQuery is an HTML5 framework for using user interface components based on jQuery. It helps in building features for interactive web and mobile applications saving a lot of time for developers. Why EasyUI? EasyUI gives you the tools that you need to create modern and interactive JavaScript app
    2 min read
  • Easy UI jQuery Introduction
    Easy UI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. Features: We don't need to write much javascript code while using Ea
    2 min read
  • EasyUI jQuery Base Widgets

    • EasyUI jQuery Draggable widget
      In this article, we will learn how to design a draggable widget using jQuery EasyUI. EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time
      3 min read

    • EasyUI jQuery Resizable widget
      In this article, we will learn how to design a resizable widget using jQuery EasyUI. A resizable widget makes the given element resizable. It helps in building features for interactive web and mobile applications saving a lot of time for developers. Downloads for EasyUI for jQuery: https://www.jeasy
      2 min read

    • EasyUI jQuery pagination widget
      In this article, we will learn how to design a pagination widget using jQuery EasyUI. The pagination widget allows the user to navigate data by pages. It helps in building features for interactive web and mobile applications saving a lot of time for developers. Downloads for EasyUI for jQuery: https
      2 min read

    • EasyUI jQuery searchbox widget
      In this article, we will learn how to design a search box widget using the jQuery EasyUI search box widget allows the user to search the data by searching the value. Easy UI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in b
      2 min read

    • EasyUI jQuery progressbar widget
      In this article, we will learn how to design a progress bar widget using the jQuery Easy UI progress bar. The component can be created from HTML markup or programmatically. EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It help
      2 min read

    • EasyUI jQuery tooltip widget
      In this article, we will learn how to design a tooltip widget using jQuery EasyUI. EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time fo
      2 min read

    • EasyUI jQuery Base Widget Complete Reference
      The EasyUI jQuery has a collection of components for user-interface based on Angular, jQuery, React, and Vue, as it facilitates the necessary functionality for designing & building interactive, modern javascript applications. By using the EasyUI in jQuery, we only need to design the user interfa
      1 min read

    EasyUI jQuery Layout Widgets

    • EasyUI jQuery panel widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design panels using jQuery Easy
      4 min read

    • EasyUI jQuery tabs Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design tabs using jQuery EasyUI
      4 min read

    • EasyUI jQuery layout Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a layout using jQuery Ea
      3 min read

    • EasyUI jQuery Layout Widget Complete Reference
      The EasyUI jQuery has a collection of components for user-interface based on Angular, jQuery, React, and Vue, as it facilitates the necessary functionality for designing & building interactive, modern javascript applications. By using the EasyUI in jQuery, we only need to design the user interfa
      1 min read

    EasyUI jQuery Menu and Button Widgets

    • EasyUI jQuery menu widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a menu using jQuery Easy
      3 min read

    • EasyUI jQuery sidemenu widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design sidemenu using jQuery Ea
      2 min read

    • EasyUI jQuery linkbutton widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a link button using jQue
      2 min read

    • EasyUI jQuery menubutton widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a menu button using jQue
      2 min read

    • EasyUI jQuery splitbutton widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design splitbutton using jQuery
      2 min read

    • EasyUI jQuery switchbuttons widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design switchbutton using jQuer
      2 min read

    • EasyUI jQuery Menu and Button Widget Complete Reference
      The EasyUI jQuery has a collection of components for user-interface based on Angular, jQuery, React, and Vue, as it facilitates the necessary functionality for designing & building interactive, modern javascript applications. By using the EasyUI in jQuery, we only need to design the user interfa
      1 min read

    EasyUI jQuery Form Widgets

    • EasyUI jQuery Form widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design form using jQuery EasyUI
      3 min read

    • EasyUI jQuery validateBox Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a validate box using jQu
      2 min read

    • EasyUI jQuery textbox Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a textbox using jQuery E
      3 min read

    • EasyUI jQuery passwordBox widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a passwordbox using jQue
      2 min read

    • EasyUI jQuery maskedBox Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a masked box using jQuer
      2 min read

    • EasyUI jQuery comboBox widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a ComboBox using jQuery
      3 min read

    • EasyUI jQuery combotree widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a combotree using jQuery
      2 min read

    • EasyUI jQuery combogrid widget
      EasyUI is a HTML5 framework for using user interface components based on jQuery, React, Angular and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a combogrid using jQuery E
      2 min read

    • EasyUI jQuery tagbox Widget
      EasyUI is a HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a tagbox using jQuery Eas
      2 min read

    • EasyUI jQuery numberbox Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a numberbox using jQuery
      2 min read

    • EasyUI jQuery datebox widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a datebox using jQuery E
      2 min read

    • EasyUI jQuery datetimebox widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a datetimebox using jQue
      2 min read

    • EasyUI jQuery calendar widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a calendar using jQuery
      2 min read

    • EasyUI jQuery spinner Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a spinner using jQuery E
      2 min read

    • EasyUI jQuery timespinner widget
      In this article, we will learn how to design a time spinner using jQuery EasyUI. The TimeSpinner widget combines an editable text box and two small buttons that let the user choose a time value by increasing or decreasing the time. EasyUI is an HTML5 framework for using user interface components bas
      2 min read

    • EasyUI jQuery timepicker widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a time picker using jQue
      2 min read

    • EasyUI jQuery slider widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a slider using jQuery Ea
      3 min read

    • EasyUI jQuery fileBbox widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a FileBox using jQuery E
      2 min read

    • EasyUI jQuery checkbox widget
      In this article, we will learn how to design a checkbox using jQuery EasyUI. The checkbox widget is used for selecting multiple choices. Each choice can be enabled by clicking on the boxes. EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue tech
      2 min read

    • EasyUI jQuery radiobutton widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a Radiobutton using jQue
      2 min read

    • EasyUI jQuery Form Widget Complete Reference
      The EasyUI jQuery has a collection of components for user-interface based on Angular, jQuery, React, and Vue, as it facilitates the necessary functionality for designing & building interactive, modern javascript applications. By using the EasyUI in jQuery, we only need to design the user interfa
      1 min read

    EasyUI jQuery Window Widgets

    • EasyUI jQuery window widget
      In this article, we will learn how to design a window using jQuery EasyUI. The window widget is draggable panel that can be used as an application window. It floats on the page and can be moved anywhere required. EasyUI is an HTML5 framework for using user interface components based on jQuery, React
      2 min read

    • EasyUI jQuery dialog widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a dialog using jQuery Ea
      2 min read

    • EasyUI jQuery messager widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a messager using jQuery E
      2 min read

    • EasyUI jQuery Window Widget Complete Reference
      The EasyUI jQuery has a collection of components for user-interface based on Angular, jQuery, React, and Vue, as it facilitates the necessary functionality for designing & building interactive, modern javascript applications. By using the EasyUI in jQuery, we only need to design the user interfa
      1 min read

    EasyUI jQuery DataGrid and Tree Widgets

    • EasyUI jQuery datalist widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a datalist using jQuery
      2 min read

    • EasyUI jQuery propertygrid widget
      EasyUI is a HTML5 framework for using user interface components based on jQuery, React, Angular and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a propertygrid using jQuer
      1 min read

    • EasyUI jQuery tree widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design a combotreegrid using jQu
      4 min read

    • EasyUI jQuery treegrid Widget
      EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers. In this article, we will learn how to design treegrid using jQuery Ea
      4 min read

    • EasyUI jQuery DataGrid and Tree Widget Complete Reference
      The EasyUI jQuery has a collection of components for user-interface based on Angular, jQuery, React, and Vue, as it facilitates the necessary functionality for designing & building interactive, modern javascript applications. By using the EasyUI in jQuery, we only need to design the user interfa
      1 min read

geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences